Skip to content

Commit 85511d5

Browse files
committed
test
1 parent f9fc207 commit 85511d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ if [[ "$OSTYPE" == "linux-gnu"* ]]; then # Linux
1818
elif [[ "$OSTYPE" == "darwin"* ]]; then # macOS
1919
brew update || true # allow failure
2020
brew install cmake pkg-config wget unzip coreutils # `coreutils` installs the `realpath` command
21-
brew install llvm@15
21+
brew install lld
2222
elif [[ "$OSTYPE" == "msys"* ]]; then # Windows
2323
echo "Dependencies are not going to be installed automatically on Windows."
2424
else
@@ -69,7 +69,7 @@ cd _build
6969
mkdir -p ../../../../_spidermonkey_install/
7070
../configure --target=$(clang --print-target-triple) \
7171
--prefix=$(realpath $PWD/../../../../_spidermonkey_install) \
72-
$(if [[ "$OSTYPE" == "darwin"* ]]; then echo "--with-toolchain-prefix=$(brew --prefix llvm@15)/bin/"; fi) \
72+
$(if [[ "$OSTYPE" == "darwin"* ]]; then echo "--with-toolchain-prefix=$(brew --prefix llvm)/bin/"; fi) \
7373
--with-intl-api \
7474
$(if [[ "$OSTYPE" != "msys"* ]]; then echo "--without-system-zlib"; fi) \
7575
--disable-debug-symbols \

0 commit comments

Comments
 (0)