Browse Source

py/mkrules.mk: Show frozen modules sizes together with executable size.

This works for Unix and similar ports so far.
pull/3256/head
Paul Sokolovsky 7 years ago
parent
commit
4dc7c5649b
  1. 2
      py/mkrules.mk

2
py/mkrules.mk

@ -135,7 +135,7 @@ $(PROG): $(OBJ)
ifndef DEBUG
$(Q)$(STRIP) $(STRIPFLAGS_EXTRA) $(PROG)
endif
$(Q)$(SIZE) $(PROG)
$(Q)$(SIZE) $$(find $(BUILD)/build -name "frozen*.o") $(PROG)
clean: clean-prog
clean-prog:

Loading…
Cancel
Save