arm64: vdso32: Allow building with LLVM integrated AS

Change-Id: I8bfc0e53b4bd347adaa298594402a2210aed3b49
This commit is contained in:
Bruno Martins
2023-10-20 23:29:59 +01:00
parent 4969867afb
commit f54c11a5fe

View File

@@ -5,7 +5,10 @@
# A mix between the arm64 and arm vDSO Makefiles.
ifeq ($(cc-name),clang)
CC_ARM32 := $(CC) $(CLANG_TARGET_ARM32) -no-integrated-as $(CLANG_GCC32_TC) $(CLANG_PREFIX32)
CC_ARM32 := $(CC) $(CLANG_TARGET_ARM32) $(CLANG_GCC32_TC) $(CLANG_PREFIX32)
ifneq ($(LLVM_IAS),1)
CC_ARM32 += -no-integrated-as
endif
else
CC_ARM32 := $(CROSS_COMPILE_ARM32)$(cc-name)
endif