You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sed -i'' -e '/MOZ_CRASH_UNSAFE_PRINTF/,/__PRETTY_FUNCTION__);/d' ./mfbt/LinkedList.h # would crash in Debug Build: in `~LinkedList()` it should have removed all this list's elements before the list's destruction
64
64
sed -i'' -e '/MOZ_ASSERT(stackRootPtr == nullptr);/d' ./js/src/vm/JSContext.cpp # would assert false in Debug Build since we extensively use `new JS::Rooted`
65
-
sed -i'' -e 's|-id $(abspath $(libdir)|-id $(abspath @rpath|' ./js/src/build/Makefile.in # Set the `install_name` field to use RPATH instead of an absolute path
65
+
sed -i'' -e 's|-id $(abspath $(libdir)|-id $(abspath @rpath|' ./js/src/build/Makefile.in # Set the `install_name` field of libmozjs dylib to use the RPATH instead of an absolute path
66
66
cd js/src
67
67
mkdir -p _build
68
68
cd _build
@@ -81,12 +81,6 @@ echo "Done building spidermonkey"
81
81
echo"Installing spidermonkey"
82
82
# install to ../../../../_spidermonkey_install/
83
83
make install
84
-
# if [[ "$OSTYPE" == "darwin"* ]]; then # macOS
85
-
# cd ../../../../_spidermonkey_install/lib/
86
-
# # Set the `install_name` field to use RPATH instead of an absolute path
0 commit comments