1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00

[libFuzzer] add a standalone build script

llvm-svn: 282321
This commit is contained in:
Kostya Serebryany 2016-09-24 04:00:00 +00:00
parent f0fc8836d4
commit 810d04f0e6

10
lib/Fuzzer/build.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/bash
LIBFUZZER_SRC_DIR=$(dirname $0)
for f in $LIBFUZZER_SRC_DIR/*.cpp; do
clang -O2 -std=c++11 $f -c &
done
wait
rm -f libFuzzer.a
ar ru libFuzzer.a Fuzzer*.o
rm -f Fuzzer*.o