We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bc1f13 commit ce500edCopy full SHA for ce500ed
Meta/Lagom/BuildFuzzers.sh
@@ -14,11 +14,12 @@ die() {
14
15
pick_clang() {
16
local BEST_VERSION=0
17
- for CLANG_CANDIDATE in clang clang-13 clang-14 /usr/local/bin/clang-13 /usr/local/bin/clang-14; do
+ for CLANG_CANDIDATE in clang clang-13 clang-14 clang-15 /opt/homebrew/opt/llvm/bin/clang ; do
18
if ! command -v $CLANG_CANDIDATE >/dev/null 2>&1; then
19
continue
20
fi
21
if $CLANG_CANDIDATE --version 2>&1 | grep "Apple clang" >/dev/null; then
22
+ echo "Skipping Apple clang, as Apple does not ship libfuzzer with Xcode..."
23
24
25
if ! $CLANG_CANDIDATE -dumpversion >/dev/null 2>&1; then
0 commit comments