Add UndefinedBehaviorSanitizer support
This commit is contained in:
parent
a9957cdcee
commit
83e6fca8be
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -50,6 +50,8 @@ prefix=/usr/local
|
|||
#CONFIG_ASAN=y
|
||||
# use memory sanitizer
|
||||
#CONFIG_MSAN=y
|
||||
# use UB sanitizer
|
||||
#CONFIG_UBSAN=y
|
||||
# include the code for BigInt/BigFloat/BigDecimal and math mode
|
||||
CONFIG_BIGNUM=y
|
||||
|
||||
|
@ -133,6 +135,10 @@ ifdef CONFIG_MSAN
|
|||
CFLAGS+=-fsanitize=memory -fno-omit-frame-pointer
|
||||
LDFLAGS+=-fsanitize=memory -fno-omit-frame-pointer
|
||||
endif
|
||||
ifdef CONFIG_UBSAN
|
||||
CFLAGS+=-fsanitize=undefined -fno-omit-frame-pointer
|
||||
LDFLAGS+=-fsanitize=undefined -fno-omit-frame-pointer
|
||||
endif
|
||||
ifdef CONFIG_WIN32
|
||||
LDEXPORT=
|
||||
else
|
||||
|
@ -163,6 +169,7 @@ endif
|
|||
ifeq ($(CROSS_PREFIX),)
|
||||
ifndef CONFIG_ASAN
|
||||
ifndef CONFIG_MSAN
|
||||
ifndef CONFIG_UBSAN
|
||||
PROGS+=examples/hello examples/hello_module examples/test_fib
|
||||
ifndef CONFIG_DARWIN
|
||||
PROGS+=examples/fib.so examples/point.so
|
||||
|
@ -170,6 +177,7 @@ endif
|
|||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
all: $(OBJDIR) $(OBJDIR)/quickjs.check.o $(OBJDIR)/qjs.check.o $(PROGS)
|
||||
|
||||
|
|
Loading…
Reference in a new issue