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> Reviewed-on: http://review.coreboot.org/9144 Reviewed-by: Aaron Durbin <adurbin@google.com> Tested-by: build bot (Jenkins) Reviewed-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
4785f2a358
commit
0d06b2dee9
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue