[coreboot-gerrit] New patch to review for coreboot: ec1257d buildgcc: fix compilation of IASL

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Jun 9 22:46:58 CEST 2015


Stefan Reinauer (stefan.reinauer at coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10495

-gerrit

commit ec1257deab52ddb5837bb7f33547f9bb5dd6203a
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Tue Jun 9 13:45:46 2015 -0700

    buildgcc: fix compilation of IASL
    
    IASL was broken when compiling without GCC.
    
    Change-Id: Ib859ce41c1dda10181781c025fc378504f5ebb91
    Signed-off-by: Stefan Reinauer <stefan.reinauer at coreboot.org>
---
 util/crossgcc/buildgcc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index b0ee8df..847505b 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -571,8 +571,8 @@ fi
 
 # Set up host compiler and flags needed for various OSes
 
-if [[ "$PACKAGES" == *GCC* ]]; then
 CC=cc
+if [[ "$PACKAGES" == *GCC* ]]; then
 if [ $UNAME = "Darwin" ]; then
 	#GCC_OPTIONS="$GCC_OPTIONS --enable-threads=posix"
 



More information about the coreboot-gerrit mailing list