[coreboot-gerrit] Patch set updated for coreboot: ddf3e0f buildgcc: fix compilation of IASL

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Wed Jun 10 00:04:13 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 ddf3e0ff2e38bae3728434feb2fe545f2da41f12
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 486636f..3bee6dc 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -568,8 +568,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