[coreboot] New patch to review for coreboot: 66d1c74 crossgcc: update to acpica-20121018

Idwer Vollering (vidwer@gmail.com) gerrit at coreboot.org
Tue Oct 23 20:05:14 CEST 2012


Idwer Vollering (vidwer at gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/1608

-gerrit

commit 66d1c7462c8c842628872854f00483dd9f34eb3a
Author: Idwer Vollering <vidwer at gmail.com>
Date:   Tue Oct 23 20:04:35 2012 +0200

    crossgcc: update to acpica-20121018
    
    This patch updates crossgcc to download acpica-20121018 and compile iasl.
    To do this, changes to util/crossgcc/buildgcc are necessary.
    
    Increase CROSSGCC_VERSION to 1.09
    
    Change-Id: I16e70733819d8d6f7eae07a581d488a38e0f7c23
    Signed-off-by: Idwer Vollering <vidwer at gmail.com>
---
 util/crossgcc/buildgcc                             | 17 +++++----
 .../acpica-unix-20120420_unknown_warnings.patch    | 23 ------------
 .../acpica-unix-20121018_unknown_warnings.patch    | 43 ++++++++++++++++++++++
 3 files changed, 52 insertions(+), 31 deletions(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index f71bf66..c51c250 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -21,7 +21,7 @@
 #
 
 CROSSGCC_DATE="October 23rd, 2012"
-CROSSGCC_VERSION="1.08"
+CROSSGCC_VERSION="1.09"
 
 # default settings
 TARGETDIR=`pwd`/xgcc
@@ -40,7 +40,7 @@ GDB_VERSION=7.4.1
 W32API_VERSION=3.17-2
 W32API_VERSION_SHORT=3.17
 MINGWRT_VERSION=3.18
-IASL_VERSION=20120420
+IASL_VERSION=20121018
 PYTHON_VERSION=2.7.2
 EXPAT_VERSION=2.0.1
 
@@ -591,14 +591,15 @@ if [ -f $IASL_DIR/source/compiler/.success ]; then
 else
 printf "Building IASL ${IASL_VERSION} ... "
 (
-	cd $IASL_DIR/source/compiler
+	cd $IASL_DIR/generate/unix
 	export PATH=$PATH:$DESTDIR$TARGETDIR/bin
-	rm -f .failed
+	rm -f $IASL_DIR/source/compiler/.failed
 	CFLAGS="$HOSTCFLAGS"
-	$MAKE CC="$CC" || touch .failed
-	rm -f $DESTDIR$TARGETDIR/bin/iasl || touch .failed
-	cp iasl $DESTDIR$TARGETDIR/bin || touch .failed
-	if [ ! -f .failed ]; then touch .success; fi
+	$MAKE CC="$CC" || touch $IASL_DIR/source/compiler/.failed
+	rm -f $DESTDIR$TARGETDIR/bin/iasl || touch $IASL_DIR/source/compiler/.failed
+	if [ -d bin32 ]; then cp bin32/iasl $DESTDIR$TARGETDIR/bin || touch $IASL_DIR/source/compiler/.failed
+	if [ -d bin64 ]; then cp bin64/iasl $DESTDIR$TARGETDIR/bin || touch $IASL_DIR/source/compiler/.failed
+	if [ ! -f $IASL_DIR/source/compiler/.failed ]; then touch $IASL_DIR/source/compiler/.success; fi
 ) > $IASL_DIR/source/compiler/crossgcc-build.log 2>&1
 test -r $IASL_DIR/source/compiler/.failed && printf "${RED}failed${NC}\n" || \
 	     printf "${green}ok${NC}\n"
diff --git a/util/crossgcc/patches/acpica-unix-20120420_unknown_warnings.patch b/util/crossgcc/patches/acpica-unix-20120420_unknown_warnings.patch
deleted file mode 100644
index c027f17..0000000
--- a/util/crossgcc/patches/acpica-unix-20120420_unknown_warnings.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- acpica-unix-20120420/source/compiler/Makefile	2012-04-20 22:02:33.000000000 +0200
-+++ acpica-unix-20120420.patched/source/compiler/Makefile	2012-10-21 00:30:38.634470788 +0200
-@@ -257,19 +257,11 @@
- # gcc 4+ flags
- #
- CWARNINGFLAGS += \
--    -Waddress \
-     -Waggregate-return \
-     -Wchar-subscripts \
--    -Wempty-body \
--    -Wlogical-op \
-     -Wmissing-declarations \
--    -Wmissing-field-initializers \
--    -Wmissing-parameter-type \
-     -Wnested-externs \
--    -Wold-style-declaration \
--    -Wold-style-definition \
--    -Wredundant-decls \
--    -Wtype-limits
-+    -Wold-style-definition
- 
- #
- # Bison/Flex configuration
diff --git a/util/crossgcc/patches/acpica-unix-20121018_unknown_warnings.patch b/util/crossgcc/patches/acpica-unix-20121018_unknown_warnings.patch
new file mode 100644
index 0000000..a56e086
--- /dev/null
+++ b/util/crossgcc/patches/acpica-unix-20121018_unknown_warnings.patch
@@ -0,0 +1,43 @@
+diff -ur acpica-unix-20121018/generate/unix/Makefile.config acpica-unix-20121018.patched/generate/unix/Makefile.config
+--- acpica-unix-20121018/generate/unix/Makefile.config	2012-10-18 21:23:26.000000000 +0200
++++ acpica-unix-20121018.patched/generate/unix/Makefile.config	2012-10-23 20:01:39.733594472 +0200
+@@ -104,6 +104,7 @@
+ # automatically included in -Wall.
+ #
+ CFLAGS += \
++    -O \
+     $(BITSFLAG) \
+     -D$(HOST) \
+     -D_GNU_SOURCE \
+@@ -114,10 +115,8 @@
+ 
+ CWARNINGFLAGS = \
+     -ansi \
+-    -Wall \
+     -Wbad-function-cast \
+     -Wdeclaration-after-statement \
+-    -Werror \
+     -Wformat=2 \
+     -Wmissing-declarations \
+     -Wmissing-prototypes \
+@@ -131,19 +130,11 @@
+ # gcc 4+ flags
+ #
+ CWARNINGFLAGS += \
+-    -Waddress \
+     -Waggregate-return \
+     -Wchar-subscripts \
+-    -Wempty-body \
+-    -Wlogical-op \
+     -Wmissing-declarations \
+-    -Wmissing-field-initializers \
+-    -Wmissing-parameter-type \
+     -Wnested-externs \
+-    -Wold-style-declaration \
+-    -Wold-style-definition \
+-    -Wredundant-decls \
+-    -Wtype-limits
++    -Wold-style-definition
+ 
+ #
+ # Extra warning flags (possible future use)




More information about the coreboot mailing list