blob: 7add84c7fb4760a3f464bbc9127f13d5b5b8f7e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<sect1 id="ch06-adjustingtoolchain">
<title>Adjusting toolchain</title>
<?dbhtml filename="adjustingtoolchain.html" dir="chapter06"?>
<para><screen><userinput>cd binutils-build
make -C ld tooldir=/stage1 INSTALL=/stage1/bin/install install-data-local
SPECFILE=/stage1/lib/gcc-lib/*/*/specs &&
sed -e 's@/stage1/lib/ld.so.1@/lib/ld.so.1@g' \
-e 's@/stage1/lib/ld-linux.so.2@/lib/ld-linux.so.2@g' $SPECFILE > XX
mv XX $SPECFILE
unset SPECFILE</userinput></screen></para>
</sect1>
|