Skip to content

Commit

Permalink
[bsp][lpc55sxx]update rtconfig.py to support armclang configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Z8MAN8 authored May 12, 2023
1 parent 97b9af7 commit a650e3e
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions bsp/lpc55sxx/lpc55s69_nxp_evk/rtconfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,40 @@
POST_ACTION = 'fromelf -z $TARGET'
# POST_ACTION = 'fromelf --bin $TARGET --output rtthread.bin \nfromelf -z $TARGET'

elif PLATFORM == 'armclang':
# toolchains
CC = 'armclang'
CXX = 'armclang'
AS = 'armasm'
AR = 'armar'
LINK = 'armlink'
TARGET_EXT = 'axf'

DEVICE = ' --cpu Cortex-M33 '
CFLAGS = ' --target=arm-arm-none-eabi -mcpu=cortex-m33 '
CFLAGS += ' -mcpu=cortex-m33 '
CFLAGS += ' -c -fno-rtti -funsigned-char -fshort-enums -fshort-wchar '
CFLAGS += ' -gdwarf-3 -ffunction-sections '
AFLAGS = DEVICE + ' --apcs=interwork '
LFLAGS = DEVICE + ' --info sizes --info totals --info unused --info veneers '
LFLAGS += ' --list rt-thread.map '
LFLAGS += r' --strict --scatter "board\linker_scripts\link.sct" '
CFLAGS += ' -I' + EXEC_PATH + '/ARM/ARMCLANG/include'
LFLAGS += ' --libpath=' + EXEC_PATH + '/ARM/ARMCLANG/lib'

EXEC_PATH += '/ARM/ARMCLANG/bin/'

if BUILD == 'debug':
CFLAGS += ' -g -O1' # armclang recommend
AFLAGS += ' -g'
else:
CFLAGS += ' -O2'

CXXFLAGS = CFLAGS
CFLAGS += ' -std=c99'

POST_ACTION = 'fromelf --bin $TARGET --output rtthread.bin \nfromelf -z $TARGET'

elif PLATFORM == 'iccarm':
CC = 'iccarm'
CXX = 'iccarm'
Expand Down

0 comments on commit a650e3e

Please sign in to comment.