mirror of https://github.com/ARMmbed/mbed-os.git
17 lines
527 B
Cheetah
17 lines
527 B
Cheetah
{% extends "gcc_arm_common.tmpl" %}
|
|
|
|
{% block cc_flags -%}
|
|
$(CPU) -c -g -fno-common -fmessage-length=0 -Wall -Wextra -Wno-unused-parameter -Wno-missing-field-initializers
|
|
CC_FLAGS += -fno-exceptions -fno-builtin -ffunction-sections -fdata-sections -fno-delete-null-pointer-checks -fomit-frame-pointer
|
|
CC_FLAGS += -MMD -MP
|
|
{% endblock %}
|
|
|
|
{% block target_project_elf %}
|
|
{{ super() }}
|
|
@echo ""
|
|
@echo "*****"
|
|
@echo "***** You must modify vector checksum value in *.bin and *.hex files."
|
|
@echo "*****"
|
|
@echo ""
|
|
{% endblock %}
|