diff options
author | Patrick Georgi <pgeorgi@google.com> | 2015-03-28 15:24:06 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-03-29 22:37:22 +0200 |
commit | 0d06b2dee9912feb55f14100f9520ab242161059 (patch) | |
tree | 23164be29f6c5ea2a93bc3bea9e5ef67cec1e89f /util/crossgcc | |
parent | 4785f2a358ea39d28086f85fdb7a9edeaf62dcba (diff) |
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>
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 2f18b17ac7..d0ab28aad3 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: |