Skip to content

Commit 9959f61

Browse files
committed
test 3a
1 parent 9a8b26e commit 9959f61

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

setup.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,6 @@ cd _build
6868
mkdir -p ../../../../_spidermonkey_install/
6969
../configure --target=$(clang --print-target-triple) \
7070
--prefix=$(realpath $PWD/../../../../_spidermonkey_install) \
71-
$(if [[ "$OSTYPE" == "darwin"* ]]; then echo "--with-toolchain-prefix=$(brew --prefix llvm@15)/bin/"; fi) \
7271
--with-intl-api \
7372
$(if [[ "$OSTYPE" != "msys"* ]]; then echo "--without-system-zlib"; fi) \
7473
--disable-debug-symbols \
@@ -85,7 +84,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then # macOS
8584
cd ../../../../_spidermonkey_install/lib/
8685
# Set the `install_name` field to use RPATH instead of an absolute path
8786
# overrides https://hg.mozilla.org/releases/mozilla-esr102/file/89d799cb/js/src/build/Makefile.in#l83
88-
install_name_tool -id @rpath/$(basename ./libmozjs*) ./libmozjs* # making it work for whatever name the libmozjs dylib is called
87+
llvm-install-name-tool -id @rpath/$(basename ./libmozjs*) ./libmozjs* # making it work for whatever name the libmozjs dylib is called
8988
fi
9089
echo "Done installing spidermonkey"
9190

0 commit comments

Comments
 (0)