diff options
author | emanuele-f <faranda@ntop.org> | 2020-02-13 18:20:23 +0100 |
---|---|---|
committer | emanuele-f <faranda@ntop.org> | 2020-02-13 18:42:13 +0100 |
commit | 5c52c00ea4ad8afaebd5259bc53215a1ab41569f (patch) | |
tree | f2965a187180b891336b023bb0073c16c8f8e979 /src/lib/Makefile.in | |
parent | f89f25c1182a22fbe891fa0fc87ad7ed3e1440b5 (diff) |
Add the --with-llvm-sanitizer flag
To enable the leaks detector, set the ASAN_OPTIONS=detect_leaks=1
environment variable, e.g:
ASAN_OPTIONS=detect_leaks=1 example/ndpiReader -i test.pcap
Diffstat (limited to 'src/lib/Makefile.in')
-rw-r--r-- | src/lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Makefile.in b/src/lib/Makefile.in index 6be9d78e9..f69c81946 100644 --- a/src/lib/Makefile.in +++ b/src/lib/Makefile.in @@ -14,7 +14,7 @@ prefix = @prefix@ libdir = ${prefix}/lib includedir = ${prefix}/include/ndpi CC = @CC@ -CFLAGS += -fPIC -DPIC -I../include -Ithird_party/include -DNDPI_LIB_COMPILATION -O2 -g -Wall @CUSTOM_NDPI@ +CFLAGS += -fPIC -DPIC -I../include -Ithird_party/include -DNDPI_LIB_COMPILATION -Wall @CFLAGS@ @CUSTOM_NDPI@ LDFLAGS = @LDFLAGS@ RANLIB = ranlib |