diff options
author | Fred Sundvik <fsundvik@gmail.com> | 2016-08-27 17:43:35 +0300 |
---|---|---|
committer | Fred Sundvik <fsundvik@gmail.com> | 2016-08-27 21:57:49 +0300 |
commit | 42baa6cf43ab1da79887e74b9ad71379c13094f9 (patch) | |
tree | 204b606dcc34b8b94ff35c48e3a8edc169bb3dcf /tmk_core/rules.mk | |
parent | 7eefb34e7c4f162b9568ff880d0e4e5214e1b9c9 (diff) | |
download | qmk_firmware-42baa6cf43ab1da79887e74b9ad71379c13094f9.tar.gz qmk_firmware-42baa6cf43ab1da79887e74b9ad71379c13094f9.zip |
Disable map file creation when building tests
It causes strange linker warnings on cygwin.
Diffstat (limited to 'tmk_core/rules.mk')
-rw-r--r-- | tmk_core/rules.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tmk_core/rules.mk b/tmk_core/rules.mk index 317f55e08..695fe0bad 100644 --- a/tmk_core/rules.mk +++ b/tmk_core/rules.mk | |||
@@ -161,6 +161,7 @@ SCANF_LIB = | |||
161 | 161 | ||
162 | 162 | ||
163 | MATH_LIB = -lm | 163 | MATH_LIB = -lm |
164 | CREATE_MAP ?= yes | ||
164 | 165 | ||
165 | 166 | ||
166 | #---------------- Linker Options ---------------- | 167 | #---------------- Linker Options ---------------- |
@@ -171,7 +172,10 @@ MATH_LIB = -lm | |||
171 | # Comennt out "--relax" option to avoid a error such: | 172 | # Comennt out "--relax" option to avoid a error such: |
172 | # (.vectors+0x30): relocation truncated to fit: R_AVR_13_PCREL against symbol `__vector_12' | 173 | # (.vectors+0x30): relocation truncated to fit: R_AVR_13_PCREL against symbol `__vector_12' |
173 | # | 174 | # |
174 | LDFLAGS += -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref | 175 | |
176 | ifeq ($(CREATE_MAP),yes) | ||
177 | LDFLAGS += -Wl,-Map=$(BUILD_DIR)/$(TARGET).map,--cref | ||
178 | endif | ||
175 | #LDFLAGS += -Wl,--relax | 179 | #LDFLAGS += -Wl,--relax |
176 | LDFLAGS += $(EXTMEMOPTS) | 180 | LDFLAGS += $(EXTMEMOPTS) |
177 | LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS)) | 181 | LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS)) |