From 2c8204d6325a1a6607392d5905227b9043da17cc Mon Sep 17 00:00:00 2001 From: William Harrington Date: Sat, 11 Dec 2021 00:52:08 -0600 Subject: Major updates. --- chapter7/libstdc++.sh | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) (limited to 'chapter7/libstdc++.sh') diff --git a/chapter7/libstdc++.sh b/chapter7/libstdc++.sh index 1a0b5ee..960f686 100644 --- a/chapter7/libstdc++.sh +++ b/chapter7/libstdc++.sh @@ -1,15 +1,15 @@ -#!/bin/bash -set -e - -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 +#!/bin/bash +set -e + +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 -- cgit v1.2.3-54-g00ecf