Browse Source

qemu-arm: update makefile (d553be5).

pull/515/head
Ilya Dmitrichenko 11 years ago
parent
commit
b554bc5691
  1. 6
      qemu-arm/Makefile

6
qemu-arm/Makefile

@ -9,8 +9,12 @@ include ../py/py.mk
CROSS_COMPILE = arm-none-eabi-
INC = -I.
INC += -I$(PY_SRC)
INC += -I$(BUILD)
CFLAGS_CORTEX_M3 = -mthumb -mcpu=cortex-m3
CFLAGS = -I. -I$(PY_SRC) -Wall -ansi -std=gnu99 $(CFLAGS_CORTEX_M3) $(COPT) \
CFLAGS = $(INC) -Wall -Werror -ansi -std=gnu99 $(CFLAGS_CORTEX_M3) $(COPT) \
-flto -ffunction-sections -fdata-sections
#Debugging/Optimization

Loading…
Cancel
Save