coreboot-kgpe-d16/util/crossgcc/Makefile
Patrick Georgi 0d06b2dee9 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>
2015-03-29 22:37:22 +02:00

48 lines
939 B
Makefile

all: build-i386 build-x64 build-armv7a build-aarch64 build-mips build-riscv
build-i386:
bash ./buildgcc -G -p i386-elf
build-x64:
bash ./buildgcc -G -p x86_64-elf
build-armv7a:
bash ./buildgcc -G -p armv7a-eabi
build-aarch64:
bash ./buildgcc -G -p aarch64-elf
build-mips:
bash ./buildgcc -G -p mipsel-elf
build-riscv:
bash ./buildgcc -G -p riscv-elf
.PHONY: build-i386-without-gdb
build-i386-without-gdb:
bash ./buildgcc -p i386-elf
.PHONY: build-x64-without-gdb
build-x64-without-gdb:
bash ./buildgcc -p x86_64-elf
.PHONY: build-armv7a-without-gdb
build-armv7a-without-gdb:
bash ./buildgcc -p armv7a-eabi
.PHONY: build-aarch64-without-gdb
build-aarch64-without-gdb:
bash ./buildgcc -p aarch64-elf
.PHONY: build-mips-without-gdb
build-mips-without-gdb:
bash ./buildgcc -p mipsel-elf
.PHONY: build-riscv-without-gdb
build-riscv-without-gdb:
bash ./buildgcc -p riscv-elf
clean:
rm -rf xgcc
.PHONY: all build clean