From 57001ce3bb97455d799f0a2180b7bf1287ffd71a Mon Sep 17 00:00:00 2001 From: Max Dymond Date: Fri, 1 Sep 2017 21:48:41 +0100 Subject: ossfuzz: Move to C++ for curl_fuzzer. Automake gets confused if you want to use C++ static libraries with C code - basically we need to involve the clang++ linker. The easiest way of achieving this is to rename the C code as C++ code. This gets us a bit further along the path and ought to be compatible with Google's version of clang. --- tests/fuzz/README | 2 ++ 1 file changed, 2 insertions(+) (limited to 'tests/fuzz/README') diff --git a/tests/fuzz/README b/tests/fuzz/README index cdb69fe82..8b5fcd011 100644 --- a/tests/fuzz/README +++ b/tests/fuzz/README @@ -8,7 +8,9 @@ Building the fuzz target From the CURL root directory: export CC=clang-5.0 +export CXX=clang++-5.0 export CFLAGS="-fsanitize=address -fsanitize-address-use-after-scope -fsanitize-coverage=trace-pc-guard,trace-cmp" +export CXXFLAGS="-fsanitize=address -fsanitize-address-use-after-scope -fsanitize-coverage=trace-pc-guard,trace-cmp -stdlib=libc++" ./configure --disable-shared --enable-debug --enable-maintainer-mode make -sj -- cgit v1.2.3