blob: c2ef63bb409a479d0b459b06cbd4c42bffa360c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
ln -s gthr-posix.h libgcc/gthr-default.h
mkdir build
cd build || exit 1
../libstdc++-v3/configure \
CXXFLAGS="-g -O2 -D_GNU_SOURCE" \
--prefix=/usr \
--disable-multilib \
--disable-nls \
--host="$(uname -m)"-lfs-linux-gnu \
--disable-libstdcxx-pch &&
make &&
make -j1 install
|