|
@ -1,11 +1,11 @@ |
|
|
CXX= g++ |
|
|
|
|
|
|
|
|
CXX= clang++ |
|
|
CXXFLAGS= --std=c++20 -O0 -g -pthread -DGP_TESTS -DFUZZ_STRENGTH=100000 -DNO_BENCH=0 -pedantic \
|
|
|
CXXFLAGS= --std=c++20 -O0 -g -pthread -DGP_TESTS -DFUZZ_STRENGTH=100000 -DNO_BENCH=0 -pedantic \
|
|
|
|
|
|
|
|
|
# -fprofile-instr-generate -fcoverage-mapping -Wno-unknown-attributes -fno-omit-frame-pointer \
|
|
|
|
|
|
|
|
|
-fprofile-instr-generate -fcoverage-mapping -Wno-unknown-attributes -fno-omit-frame-pointer \
|
|
|
|
|
|
|
|
|
|
|
|
# -fsanitize=address -fsanitize-blacklist=blacklist.txt
|
|
|
|
|
|
|
|
|
EVERY_USEFUL_FILE= $(shell find include/ -name "*.hpp" -type "f") |
|
|
EVERY_USEFUL_FILE= $(shell find include/ -name "*.hpp" -type "f") |
|
|
EVERY_TEST_FILE= $(shell find tests/ -name "*.cpp" -type "f") |
|
|
EVERY_TEST_FILE= $(shell find tests/ -name "*.cpp" -type "f") |
|
|
# -fsanitize=address -fsanitize-blacklist=blacklist.txt
|
|
|
|
|
|
all: tests |
|
|
all: tests |
|
|
|
|
|
|
|
|
docs: $(EVERY_USEFUL_FILE) |
|
|
docs: $(EVERY_USEFUL_FILE) |
|
|