Skip to content
Snippets Groups Projects
Commit d0f0f628 authored by Mans Rullgard's avatar Mans Rullgard
Browse files

armcc: filter out non-gcc options from ASFLAGS


This allows passing armcc-specific flags with --extra-cflags without
choking the assembler.

Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
parent 9d201b26
No related branches found
No related tags found
No related merge requests found
......@@ -1912,6 +1912,7 @@ elif $cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then
AS_DEPFLAGS='-MMD'
speed_cflags='-O3'
size_cflags='-Os'
filter_asflags="filter_out -W${armcc_opt}*"
elif $cc -version 2>/dev/null | grep -q TMS470; then
cc_type=tms470
cc_version="AV_STRINGIFY(__TI_COMPILER_VERSION__)"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment