diff options
Diffstat (limited to 'config-fuzz-clang.mk')
| -rw-r--r-- | config-fuzz-clang.mk | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/config-fuzz-clang.mk b/config-fuzz-clang.mk new file mode 100644 index 0000000..f5a1898 --- /dev/null +++ b/config-fuzz-clang.mk @@ -0,0 +1,14 @@ +CONFIGFILE_PROPER = config.mk +include $(CONFIGFILE_PROPER) + +CC = $(CC_PREFIX)clang -std=c99 + +SANITIZE = $(CLANG_SANITIZE) +FUZZ_CFLAGS = -fsanitize=fuzzer +FUZZ_LDFLAGS = -fsanitize=fuzzer +FUZZED_CPPFLAGS = -DFUZZ + +all: fuzz + +# These configurations will modify the library code +# so that it doesn't perform password hashing !!!!! |
