From 3bff5d906423fa4ac3bc3877f0f82dfa8426e86f Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Wed, 19 Nov 2014 18:36:37 +0100 Subject: 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 Reviewed-on: http://review.coreboot.org/7527 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- util/crossgcc/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'util/crossgcc') diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 14ca1ecf7e..bd7fa2f777 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -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 -- cgit v1.2.3