diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2019-08-22 13:18:24 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-08-22 13:18:24 -0400 |
commit | caeb610bb911291f8ca28129b6f5ed1b494f0fec (patch) | |
tree | 51baa909e07c3cd4281530153a628f6ac6e748fc /src/stm32 | |
parent | ff7be3e0261e844c81ae1d4c3f016c0b9dd75b77 (diff) | |
download | kutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.tar.gz kutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.tar.xz kutter-caeb610bb911291f8ca28129b6f5ed1b494f0fec.zip |
armcm_link: Rename armcm_boot.lds.S to armcm_link.lds.S
Rename the linker script so the build does not have any conflicts with
the armcm_boot.d dependency file.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/stm32')
-rw-r--r-- | src/stm32/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm32/Makefile b/src/stm32/Makefile index 144a23a2..710c9f83 100644 --- a/src/stm32/Makefile +++ b/src/stm32/Makefile @@ -16,8 +16,8 @@ CFLAGS-$(CONFIG_MACH_STM32F4) += -mfpu=fpv4-sp-d16 -mfloat-abi=hard CFLAGS += $(CFLAGS-y) -D$(MCU_UPPER) -mthumb -Ilib/cmsis-core CFLAGS_klipper.elf += --specs=nano.specs --specs=nosys.specs -CFLAGS_klipper.elf += -T $(OUT)src/generic/armcm_boot.ld -$(OUT)klipper.elf: $(OUT)src/generic/armcm_boot.ld +CFLAGS_klipper.elf += -T $(OUT)src/generic/armcm_link.ld +$(OUT)klipper.elf: $(OUT)src/generic/armcm_link.ld # Add source files src-y += stm32/main.c stm32/watchdog.c stm32/gpio.c generic/armcm_boot.c |