3bff5d9064
This adds the crosstools-aarch64 and crossgcc-aarch64 make rules to create a toolchain (with or without gdb) for AArch64 targets. Also adapt xcompile, since it's aarch64-elf. Change-Id: I6fbe09d44ee8b8493d3cd8dbbba869b409e311f7 Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: http://review.coreboot.org/7527 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
27 lines
492 B
Makefile
27 lines
492 B
Makefile
all: build-i386 build-armv7a
|
|
|
|
build-i386:
|
|
bash ./buildgcc -G -p i386-elf
|
|
|
|
build-armv7a:
|
|
bash ./buildgcc -G -p armv7a-eabi
|
|
|
|
build-aarch64:
|
|
bash ./buildgcc -G -p aarch64-elf
|
|
|
|
.PHONY: build-i386-without-gdb
|
|
build-i386-without-gdb:
|
|
bash ./buildgcc -p i386-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
|
|
|
|
clean:
|
|
rm -rf xgcc
|
|
|
|
.PHONY: all build clean
|