Stefan Reinauer (stefan.reinauer@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@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@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