From f6be0078df88440221becb42842bef59e0c039b6 Mon Sep 17 00:00:00 2001 From: jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com> Date: Wed, 1 May 2019 16:11:29 -0400 Subject: [PATCH] Try to migrate yajl-ruby and libxslt to LIB_FUZZING_ENGINE (#2365) --- projects/libxslt/build.sh | 2 +- projects/yajl-ruby/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/projects/libxslt/build.sh b/projects/libxslt/build.sh index 9da615d38..4257c4f96 100755 --- a/projects/libxslt/build.sh +++ b/projects/libxslt/build.sh @@ -48,7 +48,7 @@ for fuzzer in xpath xslt; do $CXX $CXXFLAGS \ tests/fuzz/$fuzzer.o \ -o $OUT/$fuzzer \ - -lFuzzingEngine \ + $LIB_FUZZING_ENGINE \ libexslt/.libs/libexslt.a libxslt/.libs/libxslt.a \ ../libxml2/.libs/libxml2.a \ $CRYPTO_LIBS diff --git a/projects/yajl-ruby/build.sh b/projects/yajl-ruby/build.sh index 1f293a2b5..c0f6aaeed 100755 --- a/projects/yajl-ruby/build.sh +++ b/projects/yajl-ruby/build.sh @@ -25,4 +25,4 @@ mv $SRC/*.dict $OUT/ $CXX $CXXFLAGS -I. \ -x c yajl.c yajl_alloc.c yajl_buf.c yajl_lex.c yajl_parser.c yajl_encode.c \ ../../fuzz/json_fuzzer.c -o $OUT/json_fuzzer \ - -lFuzzingEngine + $LIB_FUZZING_ENGINE