diff options
author | Patrick Georgi <pgeorgi@google.com> | 2015-03-28 16:27:42 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-03-29 22:38:57 +0200 |
commit | 8688defd5094110bea0bbd0e3cec2752fdbd6386 (patch) | |
tree | e2a9445dc0fcf8bbfab921a23ad1c2027df2641d | |
parent | 99f1a61a421adc51eec4acf1509214479e8859e9 (diff) |
mips: mips, not mipsel
Change-Id: I49df089d3fd5f578702dcc32be08bf6245277a45
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: http://review.coreboot.org/9149
Reviewed-by: Aaron Durbin <adurbin@google.com>
Tested-by: build bot (Jenkins)
-rw-r--r-- | toolchain.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/toolchain.inc b/toolchain.inc index 24fb2536de..b79985551a 100644 --- a/toolchain.inc +++ b/toolchain.inc @@ -53,19 +53,19 @@ endif COREBOOT_STANDARD_STAGES := bootblock verstage romstage ramstage -ARCHDIR-i386 := x86 -ARCHDIR-x86_32 := x86 -ARCHDIR-arm := arm -ARCHDIR-arm64 := arm64 -ARCHDIR-riscv := riscv -ARCHDIR-mipsel := mips +ARCHDIR-i386 := x86 +ARCHDIR-x86_32 := x86 +ARCHDIR-arm := arm +ARCHDIR-arm64 := arm64 +ARCHDIR-riscv := riscv +ARCHDIR-mips := mips CFLAGS_arm := -mno-unaligned-access -ffunction-sections -fdata-sections CFLAGS_arm64 := -ffunction-sections -fdata-sections -CFLAGS_mipsel := -mips32r2 -G 0 -ffunction-sections -fdata-sections -CFLAGS_mipsel += -mno-abicalls -fno-pic +CFLAGS_mips := -mips32r2 -G 0 -ffunction-sections -fdata-sections +CFLAGS_mips += -mno-abicalls -fno-pic CFLAGS_x86_32 += -ffunction-sections -fdata-sections |