aboutsummaryrefslogtreecommitdiffstats
path: root/chapter6/binutils.sh
diff options
context:
space:
mode:
authorWilliam Harrington <kb0iic@berzerkula.org>2021-03-21 11:03:16 -0500
committerWilliam Harrington <kb0iic@berzerkula.org>2021-03-21 11:03:16 -0500
commit3674a7abc20037dc287f388c22a75d49dc2000ca (patch)
tree5592fda7bd314957f4258568225316a5c408aa3f /chapter6/binutils.sh
parent1cd9d2d59b3dd72518798879976f52bd76f4bb47 (diff)
Add chapter 6 commands. Had some fixes for m4 regrding -Wabi=11 and -fpermissive and help2man --no-discard-stderr for m4 and diffutils. Also had to remove host's /usr/lib/libiberty.a as binutils pass2 kept using it for some reason.
Diffstat (limited to 'chapter6/binutils.sh')
-rw-r--r--chapter6/binutils.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/chapter6/binutils.sh b/chapter6/binutils.sh
new file mode 100644
index 0000000..b04f731
--- /dev/null
+++ b/chapter6/binutils.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+mkdir -v build
+cd build
+
+../configure \
+ --prefix=/usr \
+ --build=$(../config.guess) \
+ --host=${LFS_TGT} \
+ --disable-nls \
+ --enable-shared \
+ --disable-werror \
+ --enable-64-bit-bfd &&
+make &&
+make DESTDIR=${LFS} -j1 install &&
+install -vm755 libctf/.libs/libctf.so.0.0.0 ${LFS}/usr/lib \ No newline at end of file