crossgcc: Add buildsystem support for aarch64 compiler

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>
This commit is contained in:
Patrick Georgi
2014-11-19 18:36:37 +01:00
committed by Patrick Georgi
parent d730ca8529
commit 3bff5d9064
3 changed files with 17 additions and 4 deletions

View File

@@ -6,6 +6,9 @@ build-i386:
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
@@ -14,6 +17,10 @@ build-i386-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