[coreboot] New patch to review for coreboot: 2d7f0ce make crossgcc: compile all required toolchains

Stefan Reinauer (stefan.reinauer@coreboot.org) gerrit at coreboot.org
Tue Jan 15 01:09:40 CET 2013


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

-gerrit

commit 2d7f0ce3c5a9d718104c77619a1d9fb3ec9eae7d
Author: Stefan Reinauer <stefan.reinauer at coreboot.org>
Date:   Mon Jan 14 16:08:10 2013 -0800

    make crossgcc: compile all required toolchains
    
    The ARMv7 toolchain is now also needed for abuild (at least
    if you want to be able to compile ARM images)
    
    Change-Id: If1253203a2198f7dea632ba45540222ba3361932
    Signed-off-by: Stefan Reinauer <reinauer at google.com>
---
 util/crossgcc/Makefile | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile
index b63cc06..da3b36b 100644
--- a/util/crossgcc/Makefile
+++ b/util/crossgcc/Makefile
@@ -1,11 +1,13 @@
 all: build
 
 build:
-	bash ./buildgcc -G
+	bash ./buildgcc -G -p i386-elf
+	bash ./buildgcc -G -p armv7a-eabi
 
 .PHONY: build-without-gdb
 build-without-gdb:
-	bash ./buildgcc
+	bash ./buildgcc -p i386-elf
+	bash ./buildgcc -p armv7a-eabi
 
 clean:
 	rm -rf xgcc



More information about the coreboot mailing list