diff options
| author | Marti Bolivar <mbolivar@leaflabs.com> | 2012-06-26 23:16:29 -0400 |
|---|---|---|
| committer | Marti Bolivar <mbolivar@leaflabs.com> | 2012-06-26 23:16:45 -0400 |
| commit | fd08b1c0c2ac3a21d657f2e4e6540a6ab0cd2a20 (patch) | |
| tree | 48bf588326efc2ef99c7e8b435e133f6cdd186aa /support | |
| parent | ccc23369719f8909fe61a8423fdf382582414702 (diff) | |
Fix botched TARGET_LDFLAGS.
Works with officially supported CodeSourcery toolchain. May need
tweaks for users with a more modern arm-none-eabi-g++.
Signed-off-by: Marti Bolivar <mbolivar@leaflabs.com>
Diffstat (limited to 'support')
| -rw-r--r-- | support/make/target-config.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/make/target-config.mk b/support/make/target-config.mk index 278ca3f..b79c720 100644 --- a/support/make/target-config.mk +++ b/support/make/target-config.mk @@ -33,9 +33,9 @@ LD_SERIES_PATH := $(LD_SERIES_PATH)/$(MCU_F1_LINE) endif TARGET_LDFLAGS += -Xlinker -T$(LD_SCRIPT_PATH) \ - -Xlinker -L $(LD_SERIES_PATH) \ - -Xlinker -L $(LD_MEM_PATH) \ - -Xlinker -L$(LDDIR) + -L $(LD_SERIES_PATH) \ + -L $(LD_MEM_PATH) \ + -L $(LDDIR) TARGET_FLAGS += -DBOARD_$(BOARD) -DMCU_$(MCU) \ -DERROR_LED_PORT=$(ERROR_LED_PORT) \ -DERROR_LED_PIN=$(ERROR_LED_PIN) \ |
