Changeset 8152318
- Timestamp:
- 08/30/2005 11:00:51 AM (19 years ago)
- Children:
- 4508e60
- Parents:
- af41791
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
raf41791 r8152318 120 120 </listitem> 121 121 122 <listitem><para>August 30th, 2005 [ken]: Remove <command>sed -i</command> 123 commands from gcc-pass2.</para></listitem> 124 122 125 <listitem><para>August 23rd, 2005 [matt]: <command>find</command> may fail due 123 126 to a race condition when deleting files. Remove the && construct in -
chapter05/gcc-pass2.xml
raf41791 r8152318 74 74 system.</para> 75 75 76 <screen><userinput>sed -i 's@\(^NATIVE_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g' \ 77 gcc/Makefile.in</userinput></screen> 76 <screen><userinput>cp gcc/Makefile.in{,.orig} && 77 sed 's@\(^NATIVE_SYSTEM_HEADER_DIR =\).*@\1 /tools/include@g' \ 78 gcc/Makefile.in.orig > gcc/Makefile.in</userinput></screen> 78 79 79 80 <para>The bootstrap build performed in <xref linkend="ch-tools-gcc-pass1"/> … … 83 84 </para> 84 85 85 <screen><userinput>sed -i 's/^XCFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in</userinput></screen> 86 <screen><userinput>cp gcc/Makefile.in{,.tmp} && 87 sed 's/^XCFLAGS =$/& -fomit-frame-pointer/' gcc/Makefile.in.tmp \ 88 > gcc/Makefile.in</userinput></screen> 86 89 87 90 <para>Apply the following patch to change the location of GCC's default dynamic -
general.ent
raf41791 r8152318 1 1 <?xml version="1.0" encoding="ISO-8859-1"?> 2 <!ENTITY version "GCC4-200508 23">3 <!ENTITY releasedate "August 23, 2005">2 <!ENTITY version "GCC4-20050830"> 3 <!ENTITY releasedate "August 30, 2005"> 4 4 <!ENTITY milestone "6.2"> 5 5 <!ENTITY generic-version "gcc4"> <!-- Use "svn", "testing", or "x.y[-pre{x}]" -->
Note:
See TracChangeset
for help on using the changeset viewer.