Skip to content
Snippets Groups Projects
Commit ec7c9ab5 authored by Hauke Petersen's avatar Hauke Petersen
Browse files

Merge pull request #3380 from gebart/pr/toolchain-gcc-alias

boards/Makefile.include.cortexm_common: Add TOOLCHAIN=gcc as an alias for TOOLCHAIN=gnu
parents f6f112ab 3cfb1b60
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,12 @@ ifeq (clang,$(TOOLCHAIN)) ...@@ -11,6 +11,12 @@ ifeq (clang,$(TOOLCHAIN))
# opposed to one set in the environment) # opposed to one set in the environment)
override TOOLCHAIN := llvm override TOOLCHAIN := llvm
endif endif
# TOOLCHAIN = gcc is an alias for TOOLCHAIN = gnu
ifeq (gcc,$(TOOLCHAIN))
# use override so that we can redefine a variable set on the command line (as
# opposed to one set in the environment)
override TOOLCHAIN := gnu
endif
export TOOLCHAIN export TOOLCHAIN
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment