Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d1c6c2fb authored by Vineet Gupta's avatar Vineet Gupta
Browse files

ARCv2: Allow older gcc to cope with new regime of ARCv2/ARCompact support



-no-ll64 is specific to ARCv2 ISA, and is obviously not supported by
older ARC gcc - in this case the one hosted by linux-next sanity build
service.

Ensure that it doesn't get included for ISA_ARCOMPACT

Reported-by: default avatarGuenter Roeck <private@roeck-us.net>
Signed-off-by: default avatarVineet Gupta <vgupta@synopsys.com>
parent 2924cd18
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -37,7 +37,7 @@ cflags-$(CONFIG_ARC_HAS_LLSC) += -mlock
cflags-$(CONFIG_ARC_HAS_SWAPE)		+= -mswape

ifndef CONFIG_ARC_HAS_LL64
cflags-y				+= -mno-ll64
cflags-$(CONFIG_ISA_ARCV2)		+= -mno-ll64
endif

cflags-$(CONFIG_ARC_DW2_UNWIND)		+= -fasynchronous-unwind-tables