Clone of official tools
export/makefile/make-gcc-arm.tmpl@35:da9c89f8be7d, 2017-02-15 (annotated)
- Committer:
- The Other Jimmy
- Date:
- Wed Feb 15 13:53:18 2017 -0600
- Revision:
- 35:da9c89f8be7d
- Parent:
- 31:8ea194f6145b
- Child:
- 40:7d3fa6b99b2b
Update tools to mbed-os 5.3.5
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
The Other Jimmy |
31:8ea194f6145b | 1 | {% extends "makefile/Makefile.tmpl" %} |
The Other Jimmy |
31:8ea194f6145b | 2 | |
The Other Jimmy |
35:da9c89f8be7d | 3 | {%- block sys_libs -%} -Wl,--start-group {{ld_sys_libs|join(" ")}} -Wl,--end-group {%- endblock -%} |
The Other Jimmy |
31:8ea194f6145b | 4 | |
The Other Jimmy |
31:8ea194f6145b | 5 | {% block elf2bin %} |
The Other Jimmy |
31:8ea194f6145b | 6 | $(ELF2BIN) -O binary $< $@ |
The Other Jimmy |
31:8ea194f6145b | 7 | {%- endblock %} |
The Other Jimmy |
31:8ea194f6145b | 8 | |
The Other Jimmy |
31:8ea194f6145b | 9 | {% block elf2hex %} |
The Other Jimmy |
31:8ea194f6145b | 10 | $(ELF2BIN) -O ihex $< $@ |
The Other Jimmy |
31:8ea194f6145b | 11 | {%- endblock %} |