1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-07-22 01:13:07 +00:00
Files
MyLFS-big_bash_script/phase4/libffi.sh

18 lines
249 B
Bash

# Libffi Phase 4
./configure --prefix=/usr \
--disable-static \
--with-gcc-arch=native \
--disable-exec-static-tramp
make
if $RUN_TESTS
then
set +e
make check
set -e
fi
make install