1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 03:28:20 +02:00

comment says the wrong thing. actually uses "Debug" by default.

This commit is contained in:
flying-dude 2022-07-27 15:39:47 +02:00
parent 1c7b7df25f
commit cc23e1b50b
3 changed files with 8 additions and 8 deletions

View file

@ -37,7 +37,7 @@ if [ ! -f ../BeefySysLib/third_party/libffi/Makefile ]; then
echo Building libffi...
cd ../BeefySysLib/third_party/libffi
./configure
make
make
cd $SCRIPTPATH
fi
@ -66,9 +66,9 @@ cd ../IDE/dist
if [[ "$OSTYPE" == "darwin"* ]]; then
LIBEXT=dylib
LINKOPTS="-Wl,-no_compact_unwind -Wl,-rpath -Wl,@executable_path"
LINKOPTS="-Wl,-no_compact_unwind -Wl,-rpath -Wl,@executable_path"
else
LIBEXT=so
LIBEXT=so
LINKOPTS="-ldl -lpthread -Wl,-rpath -Wl,\$ORIGIN"
fi