Skip to content

Commit

Permalink
Update gcc to 9.2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeller committed Nov 27, 2019
1 parent 9f6139e commit 75dda31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,8 @@ CC_NO_OPTIMISATION :=
# Added after GCC version update, remove once the warnings have been fixed
#
TEMPORARY_FLAGS := -Wno-attributes \
-Wno-cast-function-type
-Wno-cast-function-type \
-Wno-address-of-packed-member

CFLAGS += $(ARCH_FLAGS) \
$(addprefix -D,$(OPTIONS)) \
Expand Down
6 changes: 3 additions & 3 deletions make/tools.mk
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
##############################

# Set up ARM (STM32) SDK
ARM_SDK_DIR ?= $(TOOLS_DIR)/gcc-arm-none-eabi-8-2019-q3-update
ARM_SDK_DIR ?= $(TOOLS_DIR)/gcc-arm-none-eabi-9-2019-q4-major
# Checked below, Should match the output of $(shell arm-none-eabi-gcc -dumpversion)
GCC_REQUIRED_VERSION ?= 8.3.1
GCC_REQUIRED_VERSION ?= 9.2.1

.PHONY: arm_sdk_version

Expand All @@ -26,7 +26,7 @@ arm_sdk_version:
## arm_sdk_install : Install Arm SDK
.PHONY: arm_sdk_install

ARM_SDK_URL_BASE := https://developer.arm.com/-/media/Files/downloads/gnu-rm/8-2019q3/RC1.1/gcc-arm-none-eabi-8-2019-q3-update
ARM_SDK_URL_BASE := https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/RC2.1/gcc-arm-none-eabi-9-2019-q4-major-x86_64

# source: https://developer.arm.com/open-source/gnu-toolchain/gnu-rm/downloads
ifdef LINUX
Expand Down

0 comments on commit 75dda31

Please sign in to comment.