From 8f8827fab7ca92bb926a9976a0abf09bea0de13a Mon Sep 17 00:00:00 2001 From: Bernard Xiong Date: Wed, 1 Nov 2017 20:58:21 +0800 Subject: [PATCH] [BSP] add -nostartfiles in link flags of sam7x bsp --- bsp/sam7x/rtconfig.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsp/sam7x/rtconfig.py b/bsp/sam7x/rtconfig.py index 57a131a43d..565120bfed 100644 --- a/bsp/sam7x/rtconfig.py +++ b/bsp/sam7x/rtconfig.py @@ -42,7 +42,7 @@ if PLATFORM == 'gcc': DEVICE = ' -mcpu=arm7tdmi' CFLAGS = DEVICE AFLAGS = ' -c' + DEVICE + ' -x assembler-with-cpp' - LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=sam7x_rom_gcc.map,-cref,-u,_start -T sam7x_rom.ld' + LFLAGS = DEVICE + ' -Wl,--gc-sections,-Map=sam7x_rom_gcc.map,-cref,-u,_start -T sam7x_rom.ld -nostartfiles' CPATH = '' LPATH = ''