COMP: adjust ARM compilation flags (#1225)

- with -mcpu=native for automatic detection and -armpl for linking in
  the performance libraries
This commit is contained in:
Mark Olesen
2019-03-01 18:20:41 +01:00
parent ad0709b832
commit bb94f5aa86
4 changed files with 8 additions and 8 deletions

View File

@ -1,6 +1,6 @@
SUFFIXES += .c
cc = armclang
cc = armclang -mpcu=native
cWARN = -Wall
@ -12,5 +12,5 @@ ctoo = $(WM_SCHEDULER) $(cc) $(cFLAGS) -c $< -o $@
LINK_LIBS = $(cDBUG)
LINKLIBSO = $(cc) -shared
LINKEXE = $(cc) -Xlinker --add-needed -Xlinker -z -Xlinker nodefs
LINKLIBSO = $(cc) -shared -armpl
LINKEXE = $(cc) -Xlinker --add-needed -Xlinker -z -Xlinker nodefs -armpl