Commit 0e9c0ecf authored by Juro Bystricky's avatar Juro Bystricky Committed by Anas Nashif
Browse files

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: default avatarJuro Bystricky <juro.bystricky@intel.com>
Signed-off-by: default avatarAndrew Boie <andrew.p.boie@intel.com>
parent b74d1e8a
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
soc-cflags = $(call cc-option,-mARCv2EM) \
                   $(call cc-option,-mav2em,) $(call cc-option,-mno-sdata)
soc-cflags = $(call cc-option,-mcpu=quarkse_em) \
             $(call cc-option,-mno-sdata)

soc-aflags = $(soc-cflags)
soc-cxxflags = $(soc-cflags)
soc-cflags += -DQM_SENSOR=1