[Clfs-commits] [Cross-LFS]Cross-LFS Book branch, master, updated. clfs-2.0.0-177-g8872181

git git at cross-lfs.org
Sun Jul 28 18:53:50 PDT 2013


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Cross-LFS Book".

The branch, master has been updated
       via  88721815b2dbac0b03301808f90979bc000d257d (commit)
       via  446bf69a44f1d139fde17bde955380e0120336d6 (commit)
       via  64dddd6094142b6d771749a249536860421ef138 (commit)
       via  9dd7280caf357f512fd2377407bb61c1b7eb72a7 (commit)
      from  1ded6e36bbd5058b5c8d1c07397dea6b509bfbad (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 88721815b2dbac0b03301808f90979bc000d257d
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Jul 28 20:53:45 2013 -0500

    Update CFLAGS for final-system eglibc.

diff --git a/BOOK/final-system/x86/eglibc.xml b/BOOK/final-system/x86/eglibc.xml
index 733ec48..b281f49 100644
--- a/BOOK/final-system/x86/eglibc.xml
+++ b/BOOK/final-system/x86/eglibc.xml
@@ -58,7 +58,7 @@
     xpointer="xpointer(//*[@os='g'])"/>
 
 <screen os="h"><userinput>
-    CFLAGS="-march=$(cut -d- -f1 <<< $MACHTYPE)" \
+    CFLAGS="-march=$(cut -d- -f1 <<< $MACHTYPE) -O2" \
     ../eglibc-&eglibc-version;/configure --prefix=/usr \
     --disable-profile --enable-kernel=2.6.32 --libexecdir=/usr/lib/eglibc \
     --enable-obsolete-rpc</userinput></screen>
diff --git a/BOOK/final-system/x86_64-64/eglibc.xml b/BOOK/final-system/x86_64-64/eglibc.xml
index 82caa9d..7faf54f 100644
--- a/BOOK/final-system/x86_64-64/eglibc.xml
+++ b/BOOK/final-system/x86_64-64/eglibc.xml
@@ -62,7 +62,8 @@
     href="../common/eglibc.xml"
     xpointer="xpointer(//*[@os='g'])"/>
 
-<screen os="h"><userinput>../eglibc-&eglibc-version;/configure --prefix=/usr \
+<screen os="h"><userinput>CFLAGS="-O2" \
+    ../eglibc-&eglibc-version;/configure --prefix=/usr \
     --disable-profile --enable-kernel=2.6.32 \
     --libexecdir=/usr/lib/eglibc --libdir=/usr/lib \
     --enable-obsolete-rpc</userinput></screen>
diff --git a/BOOK/final-system/x86_64/eglibc-64bit.xml b/BOOK/final-system/x86_64/eglibc-64bit.xml
index 53c5166..c2d4a5d 100644
--- a/BOOK/final-system/x86_64/eglibc-64bit.xml
+++ b/BOOK/final-system/x86_64/eglibc-64bit.xml
@@ -62,6 +62,7 @@
     xpointer="xpointer(//*[@os='g'])"/>
 
 <screen os="h"><userinput>CC="gcc ${BUILD64}" CXX="g++ ${BUILD64}" \
+    CFLAGS="-O2" \
     ../eglibc-&eglibc-version;/configure --prefix=/usr \
     --disable-profile --enable-kernel=2.6.32 \
     --libexecdir=/usr/lib64/eglibc --libdir=/usr/lib64 \
diff --git a/BOOK/final-system/x86_64/eglibc.xml b/BOOK/final-system/x86_64/eglibc.xml
index 4448534..bbd0aa0 100644
--- a/BOOK/final-system/x86_64/eglibc.xml
+++ b/BOOK/final-system/x86_64/eglibc.xml
@@ -59,7 +59,7 @@
     xpointer="xpointer(//*[@os='g'])"/>
 
 <screen os="h"><userinput>CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
-    CFLAGS="-march=$(cut -d- -f1 <<< ${CLFS_TARGET32})" \
+    CFLAGS="-march=$(cut -d- -f1 <<< ${CLFS_TARGET32}) -O2" \
     ../eglibc-&eglibc-version;/configure --prefix=/usr \
     --disable-profile --enable-kernel=2.6.32 \
     --libexecdir=/usr/lib/eglibc --host=${CLFS_TARGET32} \

commit 446bf69a44f1d139fde17bde955380e0120336d6
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Jul 28 20:52:58 2013 -0500

    Update CFLAGS in cross-tools eglibc.

diff --git a/BOOK/cross-tools/x86/eglibc.xml b/BOOK/cross-tools/x86/eglibc.xml
index 32b92f6..4a43c86 100644
--- a/BOOK/cross-tools/x86/eglibc.xml
+++ b/BOOK/cross-tools/x86/eglibc.xml
@@ -48,7 +48,7 @@
 
 <screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc" \
     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
-    CFLAGS="-march=$(cut -d- -f1 <<< $CLFS_TARGET)" \
+    CFLAGS="-march=$(cut -d- -f1 <<< $CLFS_TARGET) -O2" \
     ../eglibc-&eglibc-version;/configure --prefix=/tools \
     --host=${CLFS_TARGET} --build=${CLFS_HOST} \
     --disable-profile --with-tls --enable-kernel=2.6.32 --with-__thread \
@@ -76,7 +76,7 @@
 
       <varlistentry os="ea2">
         <term><parameter>CFLAGS="-march=$(cut -d- -f1 <<<
-        $CLFS_TARGET)"</parameter></term>
+        $CLFS_TARGET)" -O2</parameter></term>
         <listitem>
           <para>Forces EGLIBC to optimize for our target system.</para>
         </listitem>
diff --git a/BOOK/cross-tools/x86_64/eglibc.xml b/BOOK/cross-tools/x86_64/eglibc.xml
index e1dfb56..f63d51e 100644
--- a/BOOK/cross-tools/x86_64/eglibc.xml
+++ b/BOOK/cross-tools/x86_64/eglibc.xml
@@ -48,7 +48,7 @@
 
 <screen os="df"><userinput>BUILD_CC="gcc" CC="${CLFS_TARGET}-gcc ${BUILD32}" \
     AR="${CLFS_TARGET}-ar" RANLIB="${CLFS_TARGET}-ranlib" \
-    CFLAGS="-march=$(cut -d- -f1 <<< $CLFS_TARGET32)" \
+    CFLAGS="-march=$(cut -d- -f1 <<< $CLFS_TARGET32) -O2" \
     ../eglibc-&eglibc-version;/configure --prefix=/tools \
     --host=${CLFS_TARGET32} --build=${CLFS_HOST} \
     --disable-profile --with-tls --enable-kernel=2.6.32 --with-__thread \
@@ -76,7 +76,7 @@
 
      <varlistentry os="ea2">
         <term><parameter>CFLAGS="-march=$(cut -d- -f1 <<<
-        $CLFS_TARGET32)"</parameter></term>
+        $CLFS_TARGET32) -O2"</parameter></term>
         <listitem>
           <para>Forces EGLIBC to optimize for our target system.</para>
         </listitem>

commit 64dddd6094142b6d771749a249536860421ef138
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Jul 28 20:52:33 2013 -0500

    Add eglibc optimization entries to x86/x86_64/x86_64-64 changelogs.

diff --git a/BOOK/introduction/x86/changelog.xml b/BOOK/introduction/x86/changelog.xml
index ccaaa0b..70d9cb9 100644
--- a/BOOK/introduction/x86/changelog.xml
+++ b/BOOK/introduction/x86/changelog.xml
@@ -32,6 +32,15 @@
 
 -->
     <listitem>
+      <para>28 July 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Add -O2 to default optimizations.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>12 July 2013</para>
       <itemizedlist>
         <listitem>
diff --git a/BOOK/introduction/x86_64-64/changelog.xml b/BOOK/introduction/x86_64-64/changelog.xml
index 96a86eb..7e737e1 100644
--- a/BOOK/introduction/x86_64-64/changelog.xml
+++ b/BOOK/introduction/x86_64-64/changelog.xml
@@ -33,6 +33,15 @@
 
 -->
     <listitem>
+      <para>28 July 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Add -O2 to default optimizations.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>12 July 2013</para>
       <itemizedlist>
         <listitem>
diff --git a/BOOK/introduction/x86_64/changelog.xml b/BOOK/introduction/x86_64/changelog.xml
index 8383560..f23c5dc 100644
--- a/BOOK/introduction/x86_64/changelog.xml
+++ b/BOOK/introduction/x86_64/changelog.xml
@@ -33,6 +33,15 @@
 
 -->
     <listitem>
+      <para>28 July 2013</para>
+      <itemizedlist>
+        <listitem>
+          <para>[William Harrington] - Add -O2 to default optimizations.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
+    <listitem>
       <para>12 July 2013</para>
       <itemizedlist>
         <listitem>

commit 9dd7280caf357f512fd2377407bb61c1b7eb72a7
Author: William Harrington <kb0iic at berzerkula.org>
Date:   Sun Jul 28 20:51:23 2013 -0500

    Update date.

diff --git a/BOOK/general.ent b/BOOK/general.ent
index b5e3c6b..4e9cbb9 100644
--- a/BOOK/general.ent
+++ b/BOOK/general.ent
@@ -2,7 +2,7 @@
 
 <!ENTITY month "07"> <!-- Use two digits -->
 <!ENTITY month_name "July">
-<!ENTITY day "27"> <!-- Use two digits -->
+<!ENTITY day "28"> <!-- Use two digits -->
 <!ENTITY year "2013"> <!-- Use four digits -->
 
 <!ENTITY releasedate "&month_name; &day;, &year;">

-----------------------------------------------------------------------

Summary of changes:
 BOOK/cross-tools/x86/eglibc.xml           |    4 ++--
 BOOK/cross-tools/x86_64/eglibc.xml        |    4 ++--
 BOOK/final-system/x86/eglibc.xml          |    2 +-
 BOOK/final-system/x86_64-64/eglibc.xml    |    3 ++-
 BOOK/final-system/x86_64/eglibc-64bit.xml |    1 +
 BOOK/final-system/x86_64/eglibc.xml       |    2 +-
 BOOK/general.ent                          |    2 +-
 BOOK/introduction/x86/changelog.xml       |    9 +++++++++
 BOOK/introduction/x86_64-64/changelog.xml |    9 +++++++++
 BOOK/introduction/x86_64/changelog.xml    |    9 +++++++++
 10 files changed, 37 insertions(+), 8 deletions(-)


hooks/post-receive
-- 
Cross-LFS Book



More information about the Clfs-commits mailing list