From bbf8c8d4222a70ea1228f0ec974c6e2f0510f5b2 Mon Sep 17 00:00:00 2001 From: William Harrington Date: Thu, 18 Mar 2021 11:16:49 -0500 Subject: Add Chapter 5 build scripts for binutils, gcc, glibc, libstdc++ and linux-api-headers. --- chapter5/libstdc++.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 chapter5/libstdc++.sh (limited to 'chapter5/libstdc++.sh') diff --git a/chapter5/libstdc++.sh b/chapter5/libstdc++.sh new file mode 100644 index 0000000..958bfa6 --- /dev/null +++ b/chapter5/libstdc++.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +mkdir -v 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++/${VERSION} && + +make && +make -j1 DESTDIR=${LFS} install \ No newline at end of file -- cgit v1.2.3-54-g00ecf