summaryrefslogtreecommitdiff
path: root/examples/rules.mk
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-05-08 17:25:47 +0700
committerhathach <[email protected]>2023-05-08 17:25:47 +0700
commit4fc4f35a8af6465eb2137f765e994de1029e9c5a (patch)
tree9eff12d5246a7111a96607247e9244cf0b421e15 /examples/rules.mk
parent654f1821769f50c44f786032bedfe417a9ad4d0f (diff)
fix linking missing ivt symbol for imxrt with cmake
changed device port = 0, host port =1 for imxrt 1060 and 1064
Diffstat (limited to 'examples/rules.mk')
-rw-r--r--examples/rules.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/rules.mk b/examples/rules.mk
index c125408df..3ec3c880b 100644
--- a/examples/rules.mk
+++ b/examples/rules.mk
@@ -169,7 +169,7 @@ $(BUILD)/$(PROJECT).hex: $(BUILD)/$(PROJECT).elf
$(BUILD)/$(PROJECT).elf: $(OBJ)
@echo LINK $@
- @$(LD) -o $@ $(LDFLAGS) $^ -Wl,--start-group $(LIBS) -Wl,--end-group
+ @$(LD) -o $@ $(LDFLAGS) $^ -Wl,--print-memory-usage -Wl,--start-group $(LIBS) -Wl,--end-group
endif