##// END OF EJS Templates
fuzz: more correctly specify CFLAGS and LDFLAGS when building Python...
Augie Fackler -
r40845:177b47ce default
parent child Browse files
Show More
@@ -72,7 +72,7 b' xdiff_fuzzer: xdiff.cc fuzz-xdiffi.o fuz'
72
72
73 # TODO use the $OUT env var instead of hardcoding /out
73 # TODO use the $OUT env var instead of hardcoding /out
74 /out/sanpy/bin/python:
74 /out/sanpy/bin/python:
75 cd /Python-2.7.15/ && ./configure --without-pymalloc --prefix=$$OUT/sanpy CFLAGS='-O1 -fno-omit-frame-pointer -g -fwrapv -fstack-protector-strong' LDFLAGS=-lasan && ASAN_OPTIONS=detect_leaks=0 make && make install
75 cd /Python-2.7.15/ && ./configure --without-pymalloc --prefix=$$OUT/sanpy CFLAGS="$(CFLAGS)" LDFLAGS=$$PYLDFLAGS && ASAN_OPTIONS=detect_leaks=0 make && make install
76
76
77 sanpy: /out/sanpy/bin/python
77 sanpy: /out/sanpy/bin/python
78
78
General Comments 0
You need to be logged in to leave comments. Login now