Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9144
-gerrit
commit 6f8348213a2b2db8986dda80472a55adf28459f2 Author: Patrick Georgi pgeorgi@google.com Date: Sat Mar 28 15:24:06 2015 +0100
crossgcc: Build mipsel-elf, not mips-elf
The build system expects mipsel, and it's the more precise name, too.
Change-Id: I9e1135385b3f1374b3179ecf5e11a1d60bc17ef7 Signed-off-by: Patrick Georgi pgeorgi@google.com --- util/crossgcc/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 2f18b17..d0ab28a 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -13,7 +13,7 @@ build-aarch64: bash ./buildgcc -G -p aarch64-elf
build-mips: - bash ./buildgcc -G -p mips-elf + bash ./buildgcc -G -p mipsel-elf
build-riscv: bash ./buildgcc -G -p riscv-elf @@ -36,7 +36,7 @@ build-aarch64-without-gdb:
.PHONY: build-mips-without-gdb build-mips-without-gdb: - bash ./buildgcc -p mips-elf + bash ./buildgcc -p mipsel-elf
.PHONY: build-riscv-without-gdb build-riscv-without-gdb: