mirror of
https://github.com/minetest/irrlicht.git
synced 2024-11-13 14:00:27 +01:00
11 lines
213 B
Bash
11 lines
213 B
Bash
|
#!/bin/bash
|
||
|
LIBFUZZER_SRC_DIR=$(dirname $0)
|
||
|
for f in $LIBFUZZER_SRC_DIR/*.cpp; do
|
||
|
clang -g -O2 -fno-omit-frame-pointer -std=c++11 $f -c &
|
||
|
done
|
||
|
wait
|
||
|
rm -f libFuzzer.a
|
||
|
ar ru libFuzzer.a Fuzzer*.o
|
||
|
rm -f Fuzzer*.o
|
||
|
|