ARM build fix: Don't use X64 asm here

Former-commit-id: b775ebb382240876234e179b73866c7d63a209d6
This commit is contained in:
John Sully 2019-03-20 04:14:33 +00:00
parent be3272ec38
commit a12299203c

View File

@ -45,8 +45,9 @@ endif
endif endif
USEASM?=true USEASM?=true
# Do we use our assembly spinlock? # Do we use our assembly spinlock? X64 only
ifeq ($(uname_S),Linux) ifeq ($(uname_S),Linux)
ifeq ($(uname_M),x86_64)
ifneq ($(@@),32bit) ifneq ($(@@),32bit)
ifeq ($(USEASM),true) ifeq ($(USEASM),true)
ASM_OBJ+= fastlock_x64.o ASM_OBJ+= fastlock_x64.o
@ -55,6 +56,7 @@ ifeq ($(USEASM),true)
endif endif
endif endif
endif endif
endif
ifeq ($(COMPILER_NAME),clang) ifeq ($(COMPILER_NAME),clang)
CXXFLAGS+= -stdlib=libc++ CXXFLAGS+= -stdlib=libc++