1
0
mirror of https://github.com/krglaws/MyLFS.git synced 2025-08-06 11:12:03 +00:00
Files
MyLFS-big_bash_script/phase3/libstdcpp.sh
2022-03-26 17:55:10 -04:00

18 lines
368 B
Bash

# Libstdc++ Phase 3
ln -s gthr-posix.h libgcc/gthr-default.h
mkdir build
cd build
../libstdc++-v3/configure \
CXXFLAGS="-g -O2 -D_GNU_SOURCE" \
--prefix=/usr \
--disable-multilib \
--disable-nls \
--host=$LFS_TGT \
--disable-libstdcxx-pch
make
make install