mirror of https://github.com/google/oss-fuzz.git
[ghostscript] Enable flag also used in valgrind builds. (#3620)
Valgrind may complain when software reads out partially uninitialized data and stores it elsewhere, but only reads the initialized parts from this latter location. The flag enables code that initializes all the data to avoid valgrind reporting false positives. Presumably MSAN suffers from similar issues so, try enabling this flag.
This commit is contained in:
parent
56041222c6
commit
41c719f127
|
@ -43,7 +43,7 @@ CUPS_LDFLAGS=$($CUPSCONFIG --ldflags)
|
|||
CUPS_LIBS=$($CUPSCONFIG --image --libs)
|
||||
export CXXFLAGS="$CXXFLAGS $CUPS_CFLAGS"
|
||||
|
||||
CPPFLAGS="${CPPFLAGS:-} $CUPS_CFLAGS" ./autogen.sh \
|
||||
CPPFLAGS="${CPPFLAGS:-} $CUPS_CFLAGS -DPACIFY_VALGRIND" ./autogen.sh \
|
||||
CUPSCONFIG=$CUPSCONFIG \
|
||||
--enable-freetype --enable-fontconfig \
|
||||
--enable-cups --with-ijs --with-jbig2dec \
|
||||
|
|
Loading…
Reference in New Issue