mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-18 16:27:34 +01:00
13 lines
275 B
Makefile
13 lines
275 B
Makefile
export AFL_QUIET = 1
|
|
CC = afl-clang
|
|
CXX = afl-clang++
|
|
LD = afl-clang++
|
|
|
|
ifeq ($(ASAN),1)
|
|
export AFL_USE_ASAN = 1
|
|
endif
|
|
|
|
# Prevent NDEBUG from being defined since we will always want assertions to run
|
|
# when the code is being fuzzed
|
|
SFLAGS := $(filter-out -DNDEBUG,$(SFLAGS))
|