Merge pull request #1231 from Echelon9/fix/make-ARCH_FLAGS-dup

Remove duplicated -mfpu=fpv4-sp-d16 under cortex-m4 based targets.
This commit is contained in:
Dominic Clifton 2015-08-20 18:26:16 +01:00
commit 4c4ce63563
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ endif
LD_SCRIPT = $(LINKER_DIR)/stm32_flash_f303_$(FLASH_SIZE)k.ld
ARCH_FLAGS = -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -mfpu=fpv4-sp-d16 -fsingle-precision-constant -Wdouble-promotion
ARCH_FLAGS = -mthumb -mcpu=cortex-m4 -mfloat-abi=hard -mfpu=fpv4-sp-d16 -fsingle-precision-constant -Wdouble-promotion
DEVICE_FLAGS = -DSTM32F303xC -DSTM32F303
TARGET_FLAGS = -D$(TARGET)
ifeq ($(TARGET),CHEBUZZF3)