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)
This commit is contained in:
parent
99f1a61a42
commit
8688defd50
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue