Lines Matching +full:arm926ej +full:- +full:s
3 Signed-off-by: Alexandre Belloni <abelloni@adeneo-embedded.com>
4 ---
5 makerule/lpc32xx/make.lpc32xx.gnu | 22 +++++++++++-----------
6 1 files changed, 11 insertions(+), 11 deletions(-)
8 diff --git a/makerule/lpc32xx/make.lpc32xx.gnu b/makerule/lpc32xx/make.lpc32xx.gnu
10 --- a/makerule/lpc32xx/make.lpc32xx.gnu
12 @@ -27,19 +27,19 @@ CFLAGS += -mno-sched-prolog -fno-hosted -mno-thumb-interwork -ffunction-sectio
13 CFLAGS += -I$(CSP_INC_DIR) -I$(BSP_INC_DIR) -I$(GEN_INC_DIR)
14 AFLAGS = -mcpu=arm926ej-s
15 AFLAGS += -I$(CSP_INC_DIR) -I$(BSP_INC_DIR) -I$(GEN_INC_DIR)
16 -CC = arm-none-eabi-gcc
17 -AS = arm-none-eabi-as
18 -AR = arm-none-eabi-ar -r
19 -LD = arm-none-eabi-gcc
20 -NM = arm-none-eabi-nm
21 -OBJDUMP = arm-none-eabi-objdump
22 -OBJCOPY = arm-none-eabi-objcopy
23 -READELF = arm-none-eabi-readelf
26 +AR = $(CROSS_COMPILE)ar -r
32 LDFLAGS += -Wl,--gc-sections
34 LK = -static
35 LK += -Wl,--start-group $(TARGET_CSP_LIB) $(TARGET_BSP_LIB) $(TARGET_GEN_LIB)
36 -LK += -lgcc -lc -lg -lm -lstdc++ -lsupc++
37 +LK += -nostdlib -lgcc #-lc -lg -lm -lstdc++ -lsupc++
38 LK += -Wl,--end-group
39 MAP = -Xlinker -Map -Xlinker
40 LDESC = -Xlinker -T
41 @@ -47,6 +47,6 @@ ENTRY = -e
42 BIN = -bin
45 -ELFTOREC =arm-none-eabi-objcopy -O srec --strip-all --verbose
46 -ELFTOBIN =arm-none-eabi-objcopy -I elf32-littlearm -O binary --strip-all --verbose
47 +ELFTOREC = $(OBJCOPY) -O srec --strip-all --verbose
48 +ELFTOBIN = $(OBJCOPY) -I elf32-littlearm -O binary --strip-all --verbose
50 --