mirror of https://github.com/google/oss-fuzz.git
Really fix the libc++ build's include paths. (#3116)
The -I flag I previously removed was used to drag in the "fuzzing/fuzzing.h" header.
This commit is contained in:
parent
ebd899105b
commit
c8b58c19f5
|
@ -30,5 +30,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) {
|
|||
assert(result == 0); return 0;
|
||||
}
|
||||
EOF
|
||||
$CXX $CXXFLAGS -std=c++11 ${f}_fuzzer.cc ./libcxx/fuzzing/fuzzing.cpp -cxx-isystem ./libcxx/include -o $OUT/$f $LIB_FUZZING_ENGINE
|
||||
$CXX $CXXFLAGS -std=c++11 ${f}_fuzzer.cc ./libcxx/fuzzing/fuzzing.cpp \
|
||||
-cxx-isystem ./libcxx/include -iquote ./libcxx \
|
||||
-o $OUT/$f $LIB_FUZZING_ENGINE
|
||||
done
|
||||
|
|
Loading…
Reference in New Issue