BUG: had clang++ instead of armclang++

This commit is contained in:
Mark Olesen 2019-04-29 21:10:14 +02:00 committed by Andrew Heather
parent 1ff33d0f9b
commit ed6b26ba45
2 changed files with 5 additions and 3 deletions

View File

@ -1,11 +1,10 @@
SUFFIXES += .c
# A clang variant
include $(GENERAL_RULES)/Clang/c
cc = armclang
cARCH = -mcpu=native
cWARN = -Wall
include $(DEFAULT_RULES)/c$(WM_COMPILE_OPTION)
cFLAGS = $(cARCH) $(GFLAGS) $(cWARN) $(cOPT) $(cDBUG) $(LIB_HEADER_DIRS) -fPIC

View File

@ -1,5 +1,8 @@
# A clang variant
include $(GENERAL_RULES)/Clang/c++
CC = armclang++ -std=c++11
c++ARCH = -mcpu=native
include $(DEFAULT_RULES)/c++$(WM_COMPILE_OPTION)