aboutsummaryrefslogtreecommitdiffhomepage
path: root/projects/jsonnet/build.sh
diff options
context:
space:
mode:
authorGravatar jonathanmetzman <31354670+jonathanmetzman@users.noreply.github.com>2019-04-30 16:48:34 -0400
committerGravatar GitHub <noreply@github.com>2019-04-30 16:48:34 -0400
commit7553ee876d864eeaffafd097f876dff2227d193d (patch)
tree1a5c3d1893d51dcefcaea2d957ebfe23ab061a54 /projects/jsonnet/build.sh
parent316c1df6a40f0f5a275e32214445304213ee1b1b (diff)
Migrate projects with trouble with exceptions to $LIB_FUZZING_ENGINE (#2359)
Migrate projects that broke libFuzzer with exceptions to $LIB_FUZZING_ENGINE. Replace uses of -lFuzzingEngine with `$LIB_FUZZING_ENGINE`
Diffstat (limited to 'projects/jsonnet/build.sh')
-rw-r--r--projects/jsonnet/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/projects/jsonnet/build.sh b/projects/jsonnet/build.sh
index 2742a51d..5386efb1 100644
--- a/projects/jsonnet/build.sh
+++ b/projects/jsonnet/build.sh
@@ -25,7 +25,7 @@ popd
INSTALL_DIR="$SRC/jsonnet"
fuzzer=convert_jsonnet_fuzzer
-$CXX $CXXFLAGS -I${INSTALL_DIR}/include -lFuzzingEngine \
+$CXX $CXXFLAGS -I${INSTALL_DIR}/include $LIB_FUZZING_ENGINE \
$fuzzer.cc -o $OUT/$fuzzer \
${INSTALL_DIR}/build/libjsonnet.a \
${INSTALL_DIR}/build/libmd5.a