Skip to content

Commit

Permalink
vdso32:Makefile: remove -no-integrated-as from CC_ARM32
Browse files Browse the repository at this point in the history
since we are going to use llvm ias

also a fix for
/usr/bin/as: unrecognized option '-EL'
when compiling with clang neutron clang 19 , clang 18 works fine without this fix
  • Loading branch information
ghazzor authored and ravindu644 committed Mar 26, 2024
1 parent 362b363 commit 3683504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/arm64/kernel/vdso32/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# A mix between the arm64 and arm vDSO Makefiles.

ifeq ($(LLVM),1)
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)
LD_ARM32 := $(LD)
else
CC_ARM32 := $(CROSS_COMPILE_ARM32)$(cc-name)
Expand Down

0 comments on commit 3683504

Please sign in to comment.