oss-fuzz/infra/experimental/SystemSan/PoEs/pytorch-lightning-1.5.10/Makefile

13 lines
275 B
Makefile

.POSIX:
CXX = clang++
CFLAGS = -std=c++17 -Wall -Wextra -O3 -g3
SystemSan: SystemSan.cpp
$(CXX) $(CFLAGS) -lpthread -o $@ $^
run: clean SystemSan fuzz_pytorch_lightning.py
./SystemSan ./fuzz_pytorch_lightning.py -dict=vuln.dict
clean:
rm -f SystemSan /tmp/tripwire