From d13c6db7278508398c3f1b92564e4f1afbecd3c1 Mon Sep 17 00:00:00 2001 From: Bruce Dubbs Date: Thu, 15 May 2014 20:17:02 +0000 Subject: Clarify kernel configuration settings. Fix gcc LTO symlink for i686 systems. Fix kbd-2.0.1.tar.gz md5sum. Fix procps-ng url. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10565 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- chapter06/gcc.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'chapter06') diff --git a/chapter06/gcc.xml b/chapter06/gcc.xml index c1434e7e3..9ab97ea22 100644 --- a/chapter06/gcc.xml +++ b/chapter06/gcc.xml @@ -155,7 +155,13 @@ cd ../gcc-build install -dm755 /usr/lib/bfd-plugins pushd /usr/lib/bfd-plugins -ln -sfv ../../libexec/gcc/x86_64-unknown-linux-gnu/&gcc-version;/liblto_plugin.so + +if [ $(uname -m) == "i686" ]; then + ln -sfv ../../libexec/gcc/i686-pc-linux-gnu/&gcc-version;/liblto_plugin.so +else + ln -sfv ../../libexec/gcc/x86_64-unknown-linux-gnu/&gcc-version;/liblto_plugin.so +fi + popd Now that our final toolchain is in place, it is important to again ensure -- cgit v1.2.3-54-g00ecf