mirror of https://github.com/google/oss-fuzz.git
libredwg: harden build in introspector mode (#11849)
The goal is to enable fuzz introspector so further analysis can be done on libredwg.
This commit is contained in:
parent
90a0400e1a
commit
1e9c38fa38
|
@ -15,6 +15,12 @@
|
|||
#
|
||||
################################################################################
|
||||
|
||||
# Harden build in introspector mode
|
||||
if [[ "$SANITIZER" == introspector ]]; then
|
||||
export CFLAGS="${CFLAGS} -Wno-error"
|
||||
export CXXFLAGS="${CXXFLAGS} -Wno-error"
|
||||
fi
|
||||
|
||||
cd libredwg
|
||||
sh ./autogen.sh
|
||||
# enable-release to skip unstable preR13. bindings are not fuzzed.
|
||||
|
|
Loading…
Reference in New Issue