Skip to content
Snippets Groups Projects
Commit 0f70dd40 authored by dam1n19's avatar dam1n19
Browse files

SOC1-167: Update arm c compiler tool name

parent b4b94d56
No related branches found
No related tags found
No related merge requests found
...@@ -129,8 +129,10 @@ COMPILE_MICROLIB = 0 ...@@ -129,8 +129,10 @@ COMPILE_MICROLIB = 0
COMPILE_SMALLMUL = 0 COMPILE_SMALLMUL = 0
ifeq ($(TOOL_CHAIN),ds6) ifeq ($(TOOL_CHAIN),ds6)
CC_TOOL = armclang
ARM_CC_TARGET = --target=arm-$(TARGET) ARM_CC_TARGET = --target=arm-$(TARGET)
else else
CC_TOOL = armcc
ARM_CC_TARGET = -Otime ARM_CC_TARGET = -Otime
endif endif
...@@ -185,10 +187,10 @@ all_ds6 : $(BOOTLOADER).hex $(BOOTLOADER).lst ...@@ -185,10 +187,10 @@ all_ds6 : $(BOOTLOADER).hex $(BOOTLOADER).lst
$(BOOTLOADER).o : $(SOFTWARE_DIR)/common/bootloader/$(BOOTLOADER).c $(DEPS_LIST) $(BOOTLOADER).o : $(SOFTWARE_DIR)/common/bootloader/$(BOOTLOADER).c $(DEPS_LIST)
armcc $(ARM_CC_OPTIONS) $(CPU_TYPE) $< -o $@ $(CC_TOOL) $(ARM_CC_OPTIONS) $(CPU_TYPE) $< -o $@
$(SYSTEM_FILE).o : $(DEVICE_DIR)/Source/$(SYSTEM_FILE).c $(DEPS_LIST) $(SYSTEM_FILE).o : $(DEVICE_DIR)/Source/$(SYSTEM_FILE).c $(DEPS_LIST)
armcc $(ARM_CC_OPTIONS) $(CPU_TYPE) $< -o $@ $(CC_TOOL) $(ARM_CC_OPTIONS) $(CPU_TYPE) $< -o $@
$(STARTUP_FILE).o : $(STARTUP_DIR)/$(STARTUP_FILE).s $(DEPS_LIST) $(STARTUP_FILE).o : $(STARTUP_DIR)/$(STARTUP_FILE).s $(DEPS_LIST)
armasm $(ARM_ASM_OPTIONS) $(CPU_TYPE) $< -o $@ armasm $(ARM_ASM_OPTIONS) $(CPU_TYPE) $< -o $@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment