summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorYann Collet <cyan@fb.com>2016-11-18 02:06:22 (GMT)
committerYann Collet <cyan@fb.com>2016-11-18 02:08:28 (GMT)
commit8f536a43b15daf1ff7e8c0cffe387f8227f72dd3 (patch)
tree9e4cfc30f9815b6fd9ad8990400b2d9be57b42ad /Makefile
parent3f6f57768752a5687c2715ad4a7cd4ebfa502bc2 (diff)
downloadlz4-8f536a43b15daf1ff7e8c0cffe387f8227f72dd3.zip
lz4-8f536a43b15daf1ff7e8c0cffe387f8227f72dd3.tar.gz
lz4-8f536a43b15daf1ff7e8c0cffe387f8227f72dd3.tar.bz2
added sanitize32 tests to Travis
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index be662a5..3a5af81 100644
--- a/Makefile
+++ b/Makefile
@@ -109,6 +109,9 @@ clangtest-native: clean
sanitize: clean
CFLAGS="-O3 -g -fsanitize=undefined" $(MAKE) test CC=clang FUZZER_TIME="-T1mn" NB_LOOPS=-i1
+sanitize32: clean
+ CFLAGS="-m32 -O3 -g -fsanitize=undefined" $(MAKE) test CC=clang FUZZER_TIME="-T1mn" NB_LOOPS=-i1
+
staticAnalyze: clean
CFLAGS=-g scan-build --status-bugs -v $(MAKE) all