diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-01-29 17:39:07 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-02-03 02:20:51 +0100 |
commit | 2cc2ff6f3fb6311ca4ae308b105b185edfb9e10f (patch) | |
tree | 5bb926cb682e1837a81598dfa27bab56ff6a8b23 /util/crossgcc/Makefile | |
parent | 95909924024687d42cdf34518d34d7c8eb1aee57 (diff) | |
download | coreboot-2cc2ff6f3fb6311ca4ae308b105b185edfb9e10f.tar.xz |
buildgcc: Rename ARM target from armv7a to arm
The ARM target can compile for much more than just v7a.
Change-Id: Ia4f67abcffdfe9c56c5d1848c75dfea83755e755
Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/13517
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'util/crossgcc/Makefile')
-rw-r--r-- | util/crossgcc/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index 79e0c3cade..78fdbc8c37 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -49,8 +49,8 @@ build-i386: build-x64: @$(MAKE) build_tools BUILD_PLATFORM=x86_64-elf -build-armv7a: - @$(MAKE) build_tools BUILD_PLATFORM=armv7a-eabi +build-arm: + @$(MAKE) build_tools BUILD_PLATFORM=arm-eabi build-aarch64: @$(MAKE) build_tools BUILD_PLATFORM=aarch64-elf @@ -80,5 +80,5 @@ distclean: clean .PHONY: build_gcc build_iasl build_gdb build_clang \ all all_with_gdb all_without_gdb build_tools \ - build-i386 build-x64 build-armv7a build-aarch64 build-mips build-riscv build-power8 \ + build-i386 build-x64 build-arm build-aarch64 build-mips build-riscv build-power8 \ clean distclean clean_tempfiles |