mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-06-30 17:19:21 +01:00
GCC 4.3.2 uses a new location for fixed includes. Fix scripts in chapter 5's adjusting toolchain section to use it.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8684 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
This commit is contained in:
parent
56ca3a5fa6
commit
9ff6ff3fb3
@ -37,6 +37,16 @@
|
|||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
<listitem>
|
||||||
|
<para>2008-10-20</para>
|
||||||
|
<itemizedlist>
|
||||||
|
<listitem>
|
||||||
|
<para>[jhuntwork] - GCC 4.3.2 uses a new directory for fixed includes. Fixed
|
||||||
|
the adjust toolchain scripts to point to the new location.</para>
|
||||||
|
</listitem>
|
||||||
|
</itemizedlist>
|
||||||
|
</listitem>
|
||||||
|
|
||||||
<listitem>
|
<listitem>
|
||||||
<para>2008-10-19</para>
|
<para>2008-10-19</para>
|
||||||
<itemizedlist>
|
<itemizedlist>
|
||||||
|
@ -66,10 +66,10 @@ ln -sv /tools/bin/ld /tools/$(gcc -dumpmachine)/bin/ld</userinput></screen>
|
|||||||
their length):</para>
|
their length):</para>
|
||||||
|
|
||||||
<!-- && used to ease copy and pasting -->
|
<!-- && used to ease copy and pasting -->
|
||||||
<screen><userinput>GCC_INCLUDEDIR=`dirname $(gcc -print-libgcc-file-name)`/include &&
|
<screen><userinput>GCC_FIXED=`dirname $(gcc -print-libgcc-file-name)`/include-fixed &&
|
||||||
find ${GCC_INCLUDEDIR}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; &&
|
find ${GCC_FIXED}/* -maxdepth 0 -xtype d -exec rm -rvf '{}' \; &&
|
||||||
rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_INCLUDEDIR}/*` &&
|
rm -vf `grep -l "DO NOT EDIT THIS FILE" ${GCC_FIXED}/*` &&
|
||||||
unset GCC_INCLUDEDIR</userinput></screen>
|
unset GCC_FIXED</userinput></screen>
|
||||||
|
|
||||||
<caution>
|
<caution>
|
||||||
<para>At this point, it is imperative to stop and ensure that the basic
|
<para>At this point, it is imperative to stop and ensure that the basic
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="ISO-8859-1"?>
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
||||||
<!ENTITY version "SVN-20081019">
|
<!ENTITY version "SVN-20081020">
|
||||||
<!ENTITY releasedate "October 19, 2008">
|
<!ENTITY releasedate "October 20, 2008">
|
||||||
<!ENTITY copyrightdate "1999–2008">
|
<!ENTITY copyrightdate "1999–2008">
|
||||||
<!ENTITY milestone "7.0">
|
<!ENTITY milestone "7.0">
|
||||||
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
<!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
|
||||||
|
Loading…
Reference in New Issue
Block a user