stm32f0discovery: 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
cd0511726a
commit
2a3f710f1c
@ -31,10 +31,10 @@ export DEBUGSERVER = st-util
|
|||||||
# define build specific options
|
# define build specific options
|
||||||
CPU_USAGE = -mcpu=cortex-m0
|
CPU_USAGE = -mcpu=cortex-m0
|
||||||
FPU_USAGE =
|
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
|
||||||
export ASFLAGS += -ggdb -g3 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian
|
export ASFLAGS += -ggdb -g3 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian
|
||||||
export LINKFLAGS += -g3 -ggdb -std=gnu99 $(CPU_USAGE) $(FPU_USAGE) -mlittle-endian -static -lgcc -mthumb -mthumb-interwork -nostartfiles
|
export LINKFLAGS += -g3 -ggdb -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 binary
|
export OFLAGS = -O binary
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user