|
@@ -109,10 +109,12 @@ unset DL</userinput></screen>
|
|
|
<screen><userinput remap="pre">mkdir -v ../glibc-build
|
|
|
cd ../glibc-build</userinput></screen>
|
|
|
|
|
|
- <para>Again, add the needed compiler flags to CFLAGS for x86 machines:</para>
|
|
|
+ <para>As in Chapter 5, add the needed compiler flags to CFLAGS for x86 machines.
|
|
|
+ Here, the optimization of the library is also set for the gcc compiler to
|
|
|
+ enhance compilation speed (-pipe) and package performance (-O3).</para>
|
|
|
|
|
|
<screen><userinput remap="configure">case `uname -m` in
|
|
|
- i?86) echo "CFLAGS += -march=i486 -mtune=native" > configparms ;;
|
|
|
+ i?86) echo "CFLAGS += -march=i486 -mtune=native -O3 -pipe" > configparms ;;
|
|
|
esac</userinput></screen>
|
|
|
|
|
|
<para>Prepare Glibc for compilation:</para>
|