diff options
author | Patrick Georgi <pgeorgi@google.com> | 2014-12-09 18:43:24 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2014-12-10 10:22:58 +0100 |
commit | e420139a525bd964a4be8dd82d7254c631fed669 (patch) | |
tree | 364ca242056ab8d35d065ec747fe2f5dfbebd422 /util/crossgcc | |
parent | fb17a7de89b186de3f939690e547bd9f9fb9c746 (diff) | |
download | coreboot-e420139a525bd964a4be8dd82d7254c631fed669.tar.xz |
crossgcc: clean up aarch64 target integration
We already have aarch64 targets. Extend the "all" target.
Change-Id: I74d9bf5123695318c15b73c89f170f3ebb20aa80
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: http://review.coreboot.org/7729
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Tested-by: build bot (Jenkins)
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 22a10ba584..4aa6bdc2d6 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -1,11 +1,10 @@ -all: build-i386 build-armv7a +all: build-i386 build-armv7a build-aarch64 build-i386: bash ./buildgcc -G -p i386-elf build-armv7a: bash ./buildgcc -G -p armv7a-eabi - bash ./buildgcc -G -p aarch64-elf build-aarch64: bash ./buildgcc -G -p aarch64-elf @@ -17,7 +16,6 @@ build-i386-without-gdb: .PHONY: build-armv7a-without-gdb build-armv7a-without-gdb: bash ./buildgcc -p armv7a-eabi - bash ./buildgcc -p aarch64-elf .PHONY: build-aarch64-without-gdb build-aarch64-without-gdb: |