Merge pull request #1928 from mikeller/fix_gcc_version_overriding

Changed default 'GCC_REQUIRED_VERSION' to only be assigned if not overriden.
This commit is contained in:
Michael Keller 2016-12-30 14:51:38 +13:00 committed by GitHub
commit f5ddc30f7c
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@
# Set up ARM (STM32) SDK
ARM_SDK_DIR := $(TOOLS_DIR)/gcc-arm-none-eabi-5_4-2016q3
# Checked below, Should match the output of $(shell arm-none-eabi-gcc -dumpversion)
GCC_REQUIRED_VERSION := 5.4.1
GCC_REQUIRED_VERSION ?= 5.4.1
## arm_sdk_install : Install Arm SDK
.PHONY: arm_sdk_install