From 9959047c82c96108f4bdedad1db0219fcdc85378 Mon Sep 17 00:00:00 2001 From: Marcelo Povoa Date: Thu, 13 Feb 2014 11:39:21 -0800 Subject: [PATCH] aarch64: Add aarch64-elf toolchain to crossgcc Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit BUG=None BRANCH=none TEST=Build crosgcc for aarch64-elf Signed-off-by: Marcelo Povoa Change-Id: Ifc886b6bd125552855ad1cf49ee7c1b7a0350895 Reviewed-on: https://chromium-review.googlesource.com/186413 Reviewed-by: Stefan Reinauer Tested-by: Marcelo Póvoa Reviewed-by: David Hendricks Commit-Queue: Marcelo Póvoa --- util/crossgcc/Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index da3b36bb15..3d7739206b 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -3,11 +3,13 @@ all: build build: bash ./buildgcc -G -p i386-elf bash ./buildgcc -G -p armv7a-eabi + bash ./buildgcc -G -p aarch64-elf .PHONY: build-without-gdb build-without-gdb: bash ./buildgcc -p i386-elf bash ./buildgcc -p armv7a-eabi + bash ./buildgcc -p aarch64-elf clean: rm -rf xgcc