Simulation: Fix building 32-bit simulation on 32-bit X86

This commit is contained in:
Jussi Kivilinna 2017-09-04 07:25:10 -06:00 committed by Gregory Nutt
parent 449a891a8e
commit 7fe3625382

View File

@ -47,13 +47,9 @@ ifeq ($(CONFIG_SIM_M32),y)
else
ASRCS += up_setjmp64.S
endif
endif
ifeq ($(CONFIG_HOST_X86_64),y)
else ifeq ($(CONFIG_HOST_X86),y)
ASRCS += up_setjmp32.S
endif
ifeq ($(CONFIG_HOST_ARM),y)
else ifeq ($(CONFIG_HOST_ARM),y)
ASRCS += up_setjmp_arm.S
endif