From 32ff8e30e1c76313f47fffaff40c30b24bb9ac58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= <cnkgndgn@gmail.com> Date: Wed, 16 Sep 2015 21:41:58 +0200 Subject: [PATCH] cpu/Makefile.include.cortexm_common: don't use cortex-m0plus for clang if unsupported --- cpu/Makefile.include.cortexm_common | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/cpu/Makefile.include.cortexm_common b/cpu/Makefile.include.cortexm_common index 02794dab30..fde97cc307 100644 --- a/cpu/Makefile.include.cortexm_common +++ b/cpu/Makefile.include.cortexm_common @@ -11,6 +11,19 @@ export USEMODULE += newlib # set default for CPU_MODEL export CPU_MODEL ?= $(CPU) +# Temporary LLVM/Clang Workaround: +# report cortex-m0 instead of cortex-m0plus if llvm/clang (<= 3.6.2) is used +# llvm/clang version 3.6.2 still does not support the cortex-m0plus mcpu type +ifeq (llvm,$(TOOLCHAIN)) +ifeq (cortex-m0plus,$(CPU_ARCH)) +LLVM_UNSUP = $(shell clang -target arm-none-eabi -mcpu=$(CPU_ARCH) -c -x c /dev/null -o /dev/null \ + > /dev/null 2>&1 || echo 1 ) +ifeq (1,$(LLVM_UNSUP)) +CPU_ARCH = cortex-m0 +endif +endif +endif + # export the CPU model and architecture MODEL = $(shell echo $(CPU_MODEL) | tr 'a-z' 'A-Z') export CFLAGS += -DCPU_MODEL_$(MODEL) -- GitLab