diff options
author | William Harrington <kb0iic@berzerkula.org> | 2021-04-05 08:01:03 -0500 |
---|---|---|
committer | William Harrington <kb0iic@berzerkula.org> | 2021-04-05 08:01:03 -0500 |
commit | a9c1e63e1422ae397ca3ba0c998497f1730aa808 (patch) | |
tree | d78a544073b8df9f1cc3f181ff1b77c508e6b15f /chapter7/libstdc++.sh | |
parent | 6d46c8c71555ef613ebc42674e94efaabb61f655 (diff) | |
parent | e2b07c1783bed883356db92f6290aff64895fa7d (diff) |
Merge branch 'chapter7'
Diffstat (limited to 'chapter7/libstdc++.sh')
-rw-r--r-- | chapter7/libstdc++.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/chapter7/libstdc++.sh b/chapter7/libstdc++.sh new file mode 100644 index 0000000..c2ef63b --- /dev/null +++ b/chapter7/libstdc++.sh @@ -0,0 +1,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 |