blob: dfd84deaa4e4e81c9237b2d23c3243f108c760bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# makefile for harness
SRC = ../src
CFLAGS = -I$(SRC) -Wall -g -fsanitize=fuzzer,address -fno-omit-frame-pointer
CFLAGS_M = -I$(SRC) -Wall -g -fsanitize=fuzzer-no-link,address -fno-omit-frame-pointer -DWITH_READ_MAIN
ONIG_LIB = $(SRC)/.libs/libonig.a
LIBS = $(ONIG_LIB)
TARGETS = encode-libfuzzer syntax-libfuzzer \
utf16-be-libfuzzer utf16-le-libfuzzer main-encode main-syntax \
main-utf16-be main-utf16-le main-regset regset-libfuzzer
OTHER_TARGETS = libfuzzer-onig libfuzzer-onig-full \
deluxe-encode-libfuzzer main-deluxe-encode
default: $(TARGETS)
encode-libfuzzer: encode-harness.c $(ONIG_LIB)
clang $(CFLAGS) $< $(LIBS) -o $@
syntax-libfuzzer: encode-harness.c $(ONIG_LIB)
clang -DSYNTAX_TEST $(CFLAGS) $< $(LIBS) -o $@
deluxe-encode-libfuzzer: deluxe-encode-harness.c $(ONIG_LIB)
clang $(CFLAGS) $< $(LIBS) -o $@
utf16-be-libfuzzer: encode-harness.c $(ONIG_LIB)
clang -DUTF16_BE $(CFLAGS) $< $(LIBS) -o $@
utf16-le-libfuzzer: encode-harness.c $(ONIG_LIB)
clang -DUTF16_LE $(CFLAGS) $< $(LIBS) -o $@
regset-libfuzzer: regset-harness.c $(ONIG_LIB)
clang $(CFLAGS) $< $(LIBS) -o $@
main-encode: encode-harness.c $(ONIG_LIB)
clang $(CFLAGS_M) $< $(LIBS) -o $@
main-syntax: encode-harness.c $(ONIG_LIB)
clang -DSYNTAX_TEST $(CFLAGS_M) $< $(LIBS) -o $@
main-deluxe-encode: deluxe-encode-harness.c $(ONIG_LIB)
clang $(CFLAGS_M) $< $(LIBS) -o $@
main-utf16-be: encode-harness.c $(ONIG_LIB)
clang -DUTF16_BE $(CFLAGS_M) $< $(LIBS) -o $@
main-utf16-le: encode-harness.c $(ONIG_LIB)
clang -DUTF16_LE $(CFLAGS_M) $< $(LIBS) -o $@
main-regset: regset-harness.c $(ONIG_LIB)
clang $(CFLAGS_M) $< $(LIBS) -o $@
libfuzzer-onig: libfuzzer-onig.cpp $(ONIG_LIB)
clang++ $(CFLAGS) $< $(LIBS) -o $@
libfuzzer-onig-full: libfuzzer-onig.cpp $(ONIG_LIB)
clang++ -DFULL_TEST $(CFLAGS) $< $(LIBS) -o $@
$(ONIG_LIB):
cd ..; make clean
#cd ..; autoreconf -vfi
cd ..; ./configure CC=clang LD=clang CFLAGS="-g -fsanitize=address -fno-omit-frame-pointer" LDFLAGS="-g -fsanitize=address -fno-omit-frame-pointer"
cd ..; make -j4
clean:
rm -f $(TARGETS) $(OTHER_TARGETS)
|