mbed official / mbed-sdk-tools

export/makefile/make-gcc-arm.tmpl

Committer:
The Other Jimmy
Date:
2017-01-04
Revision:
31:8ea194f6145b
Child:
35:da9c89f8be7d

File content as of revision 31:8ea194f6145b:

{% extends "makefile/Makefile.tmpl" %}

{% block sys_libs %}
{% for lib in ["-lstdc++", "-lsupc++", "-lm", "-lc", "-lgcc", "-lnosys"] -%}
LD_SYS_LIBS += {{lib}}
{% endfor %}
{%- endblock %}

{% block elf2bin %}
	$(ELF2BIN) -O binary $< $@
{%- endblock %}

{% block elf2hex %}
	$(ELF2BIN) -O ihex $< $@
{%- endblock %}