File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ cd _build
68
68
mkdir -p ../../../../_spidermonkey_install/
69
69
../configure --target=$( clang --print-target-triple) \
70
70
--prefix=$( realpath $PWD /../../../../_spidermonkey_install) \
71
- $( if [[ " $OSTYPE " == " darwin" * ]]; then echo " --with-toolchain-prefix=$( brew --prefix llvm@15) /bin/" ; fi) \
72
71
--with-intl-api \
73
72
$( if [[ " $OSTYPE " != " msys" * ]]; then echo " --without-system-zlib" ; fi) \
74
73
--disable-debug-symbols \
@@ -85,7 +84,7 @@ if [[ "$OSTYPE" == "darwin"* ]]; then # macOS
85
84
cd ../../../../_spidermonkey_install/lib/
86
85
# Set the `install_name` field to use RPATH instead of an absolute path
87
86
# 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
89
88
fi
90
89
echo " Done installing spidermonkey"
91
90
You can’t perform that action at this time.
0 commit comments