diff options
Diffstat (limited to 'chapter06/glibc.xml')
-rw-r--r-- | chapter06/glibc.xml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chapter06/glibc.xml b/chapter06/glibc.xml index 9ddb9bd58..94d69b021 100644 --- a/chapter06/glibc.xml +++ b/chapter06/glibc.xml @@ -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> |