Skip to content
Snippets Groups Projects
Commit 7a54f517 authored by Alexey Brodkin's avatar Alexey Brodkin
Browse files

arc: Use "-mcpu=archs" instead of deprecated "-marchs" for ARC HS


Newer ARC toolchains don't support "-marchs" option any longer.
Instead "-mcpu=archs" should be used. What's also important older
toiolchains that support ARC HS cores will also happily accept
"-mcpu=archs" so that's a very safe move.

Signed-off-by: default avatarAlexey Brodkin <abrodkin@synopsys.com>
parent 0e1e587f
No related branches found
No related tags found
No related merge requests found
......@@ -43,11 +43,11 @@ PLATFORM_CPPFLAGS += -marcem
endif
ifdef CONFIG_CPU_ARCHS34
PLATFORM_CPPFLAGS += -marchs
PLATFORM_CPPFLAGS += -mcpu=archs
endif
ifdef CONFIG_CPU_ARCHS38
PLATFORM_CPPFLAGS += -marchs
PLATFORM_CPPFLAGS += -mcpu=archs
endif
PLATFORM_CPPFLAGS += -ffixed-r25 -D__ARC__ -gdwarf-2
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment