diff options
author | Takeshi ISHII <2170248+mtei@users.noreply.github.com> | 2019-04-23 03:20:13 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2019-04-22 11:20:13 -0700 |
commit | 6d73fe12779d6e8527d404572810ea95e714dce7 (patch) | |
tree | 9b08909cebf38f06f42e6c6a852880b67e5b5399 /tmk_core/arm_atsam.mk | |
parent | bb52119a6dfe9c6f0314d1bcd948efda59626a70 (diff) |
fix LIB_SRC and QUANTUM_LIB_SRC for ARM (#5623)
* fix LIB_SRC and QUANTUM_LIB_SRC for ARM(chibios)
* remove ARFLAGS
* tmk_core/arm_atsam.mk:AR: remove 'rcs'
Diffstat (limited to 'tmk_core/arm_atsam.mk')
-rw-r--r-- | tmk_core/arm_atsam.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/arm_atsam.mk b/tmk_core/arm_atsam.mk index 06823fb629..25a3411f4f 100644 --- a/tmk_core/arm_atsam.mk +++ b/tmk_core/arm_atsam.mk @@ -6,7 +6,7 @@ CC = arm-none-eabi-gcc OBJCOPY = arm-none-eabi-objcopy OBJDUMP = arm-none-eabi-objdump SIZE = arm-none-eabi-size -AR = arm-none-eabi-ar rcs +AR = arm-none-eabi-ar NM = arm-none-eabi-nm HEX = $(OBJCOPY) -O $(FORMAT) -R .eeprom -R .fuse -R .lock -R .signature EEP = $(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT) |