]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/opentelemetry-cpp/third_party/nlohmann-json/test/thirdparty/Fuzzer/build.sh
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / nlohmann-json / test / thirdparty / Fuzzer / build.sh
CommitLineData
1e59de90
TL
1#!/bin/bash
2LIBFUZZER_SRC_DIR=$(dirname $0)
3for f in $LIBFUZZER_SRC_DIR/*.cpp; do
4 clang -g -O2 -fno-omit-frame-pointer -std=c++11 $f -c &
5done
6wait
7rm -f libFuzzer.a
8ar ru libFuzzer.a Fuzzer*.o
9rm -f Fuzzer*.o
10