Skip to content

Commit 4dc7c56

Browse files
committed
py/mkrules.mk: Show frozen modules sizes together with executable size.
This works for Unix and similar ports so far.
1 parent ca58267 commit 4dc7c56

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

py/mkrules.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ $(PROG): $(OBJ)
135135
ifndef DEBUG
136136
$(Q)$(STRIP) $(STRIPFLAGS_EXTRA) $(PROG)
137137
endif
138-
$(Q)$(SIZE) $(PROG)
138+
$(Q)$(SIZE) $$(find $(BUILD)/build -name "frozen*.o") $(PROG)
139139

140140
clean: clean-prog
141141
clean-prog:

0 commit comments

Comments
 (0)