mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 12:52:44 +01:00
fox: Add -mno-thumb-interwork.
Cortex-M processors only support Thumb instructions (no ARM mode code). Signed-off-by: Joakim Gebart <joakim.gebart@eistec.se>
This commit is contained in:
parent
afe7ee2126
commit
222e68ddd5
@ -31,7 +31,7 @@ export RESET = $(RIOTBOARD)/$(BOARD)/dist/reset.sh
|
|||||||
# define build specific options
|
# define build specific options
|
||||||
export CPU_USAGE = -mcpu=cortex-m3
|
export CPU_USAGE = -mcpu=cortex-m3
|
||||||
export FPU_USAGE =
|
export FPU_USAGE =
|
||||||
export CFLAGS += -ggdb -g3 -std=gnu99 -Os -Wall -Wstrict-prototypes $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian -mthumb -mthumb-interwork -nostartfiles
|
export CFLAGS += -ggdb -g3 -std=gnu99 -Os -Wall -Wstrict-prototypes $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian -mthumb -mno-thumb-interwork -nostartfiles
|
||||||
export CFLAGS += -ffunction-sections -fdata-sections -fno-builtin
|
export CFLAGS += -ffunction-sections -fdata-sections -fno-builtin
|
||||||
|
|
||||||
# unwanted (CXXUWFLAGS) and extra (CXXEXFLAGS) flags for c++
|
# unwanted (CXXUWFLAGS) and extra (CXXEXFLAGS) flags for c++
|
||||||
@ -39,7 +39,7 @@ export CXXUWFLAGS +=
|
|||||||
export CXXEXFLAGS +=
|
export CXXEXFLAGS +=
|
||||||
|
|
||||||
export ASFLAGS += -ggdb -g3 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian
|
export ASFLAGS += -ggdb -g3 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian
|
||||||
export LINKFLAGS += -ggdb -g3 -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian -static -lgcc -mthumb -mthumb-interwork -nostartfiles
|
export LINKFLAGS += -ggdb -g3 -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian -static -lgcc -mthumb -mno-thumb-interwork -nostartfiles
|
||||||
# $(LINKERSCRIPT) is specified in cpu/Makefile.include
|
# $(LINKERSCRIPT) is specified in cpu/Makefile.include
|
||||||
export LINKFLAGS += -T$(LINKERSCRIPT)
|
export LINKFLAGS += -T$(LINKERSCRIPT)
|
||||||
export OFLAGS = -O ihex
|
export OFLAGS = -O ihex
|
||||||
|
Loading…
Reference in New Issue
Block a user