Created
September 19, 2019 23:40
-
-
Save alex/889a68cf94fbf0063f483b6e24315285 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff -r 45d2f234c8a1 fuzzing/oss-fuzz-build.sh | |
--- a/fuzzing/oss-fuzz-build.sh Wed Sep 18 08:37:23 2019 -0500 | |
+++ b/fuzzing/oss-fuzz-build.sh Thu Sep 19 19:40:40 2019 -0400 | |
@@ -100,7 +100,7 @@ | |
$CXX $CXXFLAGS -std=c++11 -I "$WORK/include/GraphicsMagick" \ | |
"$f" -o "$OUT/${fuzzer}_fuzzer" \ | |
- -lFuzzingEngine "$WORK/lib/libGraphicsMagick++.a" \ | |
+ $LIB_FUZZING_ENGINE "$WORK/lib/libGraphicsMagick++.a" \ | |
"$WORK/lib/libGraphicsMagick.a" $MAGICK_LIBS | |
done | |
@@ -117,7 +117,7 @@ | |
$CXX $CXXFLAGS -std=c++11 -I "$WORK/include/GraphicsMagick" \ | |
fuzzing/coder_fuzzer.cc -o "${OUT}/coder_${coder}_fuzzer" \ | |
- $coder_flags -lFuzzingEngine "$WORK/lib/libGraphicsMagick++.a" \ | |
+ $coder_flags $LIB_FUZZING_ENGINE "$WORK/lib/libGraphicsMagick++.a" \ | |
"$WORK/lib/libGraphicsMagick.a" $MAGICK_LIBS | |
if [ -f "fuzzing/dictionaries/${coder}.dict" ]; then |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment