diff options
author | Jeff King <peff@peff.net> | 2017-07-10 09:24:50 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-07-10 10:02:31 -0700 |
commit | 566cf0b3bd6458a74e8a3df8c01d27f35e7814f2 (patch) | |
tree | c94e14da28e1bb5d6e5862cb964579e6425415a0 /Makefile | |
parent | Makefile: turn off -fomit-frame-pointer with sanitizers (diff) | |
download | tgif-566cf0b3bd6458a74e8a3df8c01d27f35e7814f2.tar.xz |
Makefile: disable unaligned loads with UBSan
The undefined behavior sanitizer complains about unaligned
loads, even if they're OK for a particular platform in
practice. It's possible that they _are_ a problem, of
course, but since it's a known tradeoff the UBSan errors are
just noise.
Let's quiet it automatically by building with
NO_UNALIGNED_LOADS when SANITIZE=undefined is in use.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -994,6 +994,9 @@ endif ifdef SANITIZE BASIC_CFLAGS += -fsanitize=$(SANITIZE) -fno-sanitize-recover=$(SANITIZE) BASIC_CFLAGS += -fno-omit-frame-pointer +ifeq ($(SANITIZE),undefined) +BASIC_CFLAGS += -DNO_UNALIGNED_LOADS +endif endif ifndef sysconfdir |