mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-06-04 20:46:29 +03:00
ecode: Tentative fix for a segfaul when accesing an LSP Server that isn't running anymore.
16 lines
347 B
Bash
Executable File
16 lines
347 B
Bash
Executable File
#!/bin/sh
|
|
cd $(dirname "$0")
|
|
premake4 --file=../../premake4.lua gmake
|
|
|
|
cd ../../make/macosx/
|
|
sed -e "s/-Wl,-x//g" -i .make
|
|
|
|
make -j`nproc` $@
|
|
|
|
cd ../../bin/
|
|
ln -sf ../libs/macosx/libeepp.dylib .
|
|
ln -sf ../libs/macosx/libeepp-debug.dylib .
|
|
if [ -f ../libs/macosx/libeepp-maps-debug.dylib ]; then
|
|
ln -sf ../libs/macosx/libeepp-maps-debug.dylib .
|
|
fi
|