mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 20:42:21 +02:00
Linux fixes
This commit is contained in:
parent
a1393a570a
commit
bc261e50c9
3 changed files with 21 additions and 3 deletions
17
bin/build.sh
17
bin/build.sh
|
@ -7,6 +7,23 @@ cd "$(dirname "$0")"
|
|||
# exit when any command fails
|
||||
set -e
|
||||
|
||||
### Dependencies ###
|
||||
|
||||
if [ ! -f ../BeefySysLib/third_party/libffi/Makefile ]; then
|
||||
echo Building libffi...
|
||||
cd ../BeefySysLib/third_party/libffi
|
||||
./configure
|
||||
make
|
||||
cd "$(dirname "$0")"
|
||||
fi
|
||||
|
||||
if [ ! -d ../extern/llvm_linux_8_0_0 ]; then
|
||||
echo Building LLVM...
|
||||
cd ../extern
|
||||
./llvm_build.sh
|
||||
cd "$(dirname "$0")"
|
||||
fi
|
||||
|
||||
### LIBS ###
|
||||
|
||||
cd ..
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue