mirror of https://github.com/google/oss-fuzz.git
xerces-c: Fix coverage build by configuring with --enable-shared (#3161)
This commit is contained in:
parent
1a30a8064f
commit
c7e78f27f4
|
@ -16,11 +16,10 @@
|
||||||
set -e
|
set -e
|
||||||
cd $SRC/xerces-c
|
cd $SRC/xerces-c
|
||||||
./reconf
|
./reconf
|
||||||
./configure
|
./configure --disable-shared
|
||||||
make -j
|
make -j
|
||||||
|
|
||||||
cd $SRC
|
cd $SRC
|
||||||
|
|
||||||
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE -std=c++11 \
|
$CXX $CXXFLAGS $LIB_FUZZING_ENGINE -std=c++11 \
|
||||||
-I. -Ixerces-c/src \
|
-I. -Ixerces-c/src \
|
||||||
xerces_fuzz_common.cpp parse_target.cpp -o $OUT/parse_target \
|
xerces_fuzz_common.cpp parse_target.cpp -o $OUT/parse_target \
|
||||||
|
|
Loading…
Reference in New Issue