Skip to content

Commit 0e9c0ec

Browse files
jurobystrickynashif
authored andcommitted
Makefile (arc/soc/quark_se): New compiler options
GCC 6.x for ARC does not recognize the options -mARCv2EM and -mav2em anymore. Both options replaced in Makefile by -mcpu=quarkse_em. Change-Id: I9dec26dd64b4738976704a39455fe4241406db9e Signed-off-by: Juro Bystricky <[email protected]> Signed-off-by: Andrew Boie <[email protected]>
1 parent b74d1e8 commit 0e9c0ec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

arch/arc/soc/quark_se_c1000_ss/Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1-
soc-cflags = $(call cc-option,-mARCv2EM) \
2-
$(call cc-option,-mav2em,) $(call cc-option,-mno-sdata)
1+
soc-cflags = $(call cc-option,-mcpu=quarkse_em) \
2+
$(call cc-option,-mno-sdata)
3+
34
soc-aflags = $(soc-cflags)
45
soc-cxxflags = $(soc-cflags)
56
soc-cflags += -DQM_SENSOR=1

0 commit comments

Comments
 (0)