1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-08-03 16:44:38 +00:00
Files
MyLFS-big_bash_script/phase1/libstdcpp.sh
2022-03-26 17:55:10 -04:00

17 lines
403 B
Bash

# Libstdc++ Phase 1
mkdir build
cd build
../libstdc++-v3/configure \
--host=$LFS_TGT \
--build=$(../config.guess) \
--prefix=/usr \
--disable-multilib \
--disable-nls \
--disable-libstdcxx-pch \
--with-gxx-include-dir=/tools/$LFS_TGT/include/c++/11.2.0
make
make DESTDIR=$LFS install