summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYunlian Jiang <yunlian@google.com>2018-09-24 15:43:03 -0700
committerchrome-bot <chrome-bot@chromium.org>2018-09-26 10:32:43 -0700
commitf55573cee45f0392806333166cd040c99825e488 (patch)
tree2f41c8f471e20f9173fdb15c73d08e39b4852c65
parentdd4f275b3f81a58c28c9a388590a67ddeb493afc (diff)
downloadvboot-f55573cee45f0392806333166cd040c99825e488.tar.gz
vboot_reference: set CC=armv7a-cros-linux-gnueabihf-gcc for ARM
We want to drop armv7a-cros-linux-gnueabi toolchain, so we need to use armv7a-cros-linux-gnueabihf-gcc instead. BRANCH=None BUG=chromium:711369 TEST=emerge-kevin vboot_reference Change-Id: Ie6831079162916eb11e98da3aecdcd8c0bd0d82d Reviewed-on: https://chromium-review.googlesource.com/1241856 Commit-Ready: ChromeOS CL Exonerator Bot <chromiumos-cl-exonerator@appspot.gserviceaccount.com> Tested-by: Yunlian Jiang <yunlian@chromium.org> Reviewed-by: Mike Frysinger <vapier@chromium.org>
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 300e735c..89ca115b 100644
--- a/Makefile
+++ b/Makefile
@@ -143,7 +143,7 @@ COMMON_FLAGS := -nostdinc -pipe \
# Note: FIRMWARE_ARCH is defined by the Chromium OS ebuild.
ifeq (${FIRMWARE_ARCH}, arm)
-CC ?= armv7a-cros-linux-gnueabi-gcc
+CC ?= armv7a-cros-linux-gnueabihf-gcc
CFLAGS ?= -march=armv5 \
-fno-common -ffixed-r8 \
-mfloat-abi=hard -marm -mabi=aapcs-linux -mno-thumb-interwork \