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 /Makefile.inc | |
parent | 95909924024687d42cdf34518d34d7c8eb1aee57 (diff) |
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 'Makefile.inc')
-rw-r--r-- | Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.inc b/Makefile.inc index 06d3e14e86..9e7927d52e 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -506,7 +506,7 @@ crossgcc-x64: clean-for-update $(MAKE) -C util/crossgcc build-x64 SKIP_GDB=1 crossgcc-arm: clean-for-update - $(MAKE) -C util/crossgcc build-armv7a SKIP_GDB=1 + $(MAKE) -C util/crossgcc build-arm SKIP_GDB=1 crossgcc-aarch64: clean-for-update $(MAKE) -C util/crossgcc build-aarch64 SKIP_GDB=1 @@ -536,7 +536,7 @@ crosstools-x64: clean-for-update $(MAKE) -C util/crossgcc build-x64 crosstools-arm: clean-for-update - $(MAKE) -C util/crossgcc build-armv7a + $(MAKE) -C util/crossgcc build-arm crosstools-aarch64: clean-for-update $(MAKE) -C util/crossgcc build-aarch64 |