Browse Source

Merge pull request #2591 from JinglongZhang/master

[bsp][lpc54114-lite] bug fix: can not compile when using gcc under Linux
Bernard Xiong 6 years ago
parent
commit
11e3bc7956

+ 1 - 1
bsp/lpc54114-lite/Libraries/devices/LPC54114/gcc/SConscript

@@ -2,7 +2,7 @@ from building import *
 
 
 cwd = GetCurrentDir()
 cwd = GetCurrentDir()
 src = Split('''
 src = Split('''
-startup_LPC54114_cm4.s
+startup_LPC54114_cm4.S
 ''')
 ''')
 
 
 group = DefineGroup('Libraries', src, depend = [''], LIBS=['libpower_cm4_hardabi'], LIBPATH=[cwd])
 group = DefineGroup('Libraries', src, depend = [''], LIBS=['libpower_cm4_hardabi'], LIBPATH=[cwd])

+ 1 - 1
bsp/lpc54114-lite/rtconfig.py

@@ -40,7 +40,7 @@ if PLATFORM == 'gcc':
     DEVICE = ' -mcpu=cortex-m4 -mthumb -ffunction-sections -fdata-sections -mfpu=fpv4-sp-d16 -mfloat-abi=hard'
     DEVICE = ' -mcpu=cortex-m4 -mthumb -ffunction-sections -fdata-sections -mfpu=fpv4-sp-d16 -mfloat-abi=hard'
     CFLAGS = DEVICE + ' -g -Wall -eentry'
     CFLAGS = DEVICE + ' -g -Wall -eentry'
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp -Wa,-mimplicit-it=thumb -D__STARTUP_CLEAR_BSS'
     AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp -Wa,-mimplicit-it=thumb -D__STARTUP_CLEAR_BSS'
-    LFLAGS = DEVICE + ' -lm -lgcc -lc' + ' -nostartfiles  -Wl,--gc-sections,-Map=rtthread.map,-cref,-u,ResetISR -T drivers\linker_scripts\link.lds'
+    LFLAGS = DEVICE + ' -lm -lgcc -lc' + ' -nostartfiles  -Wl,--gc-sections,-Map=rtthread.map,-cref,-u,ResetISR -T drivers/linker_scripts/link.lds'
 
 
     CPATH = ''
     CPATH = ''
     LPATH = ''
     LPATH = ''