mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	When building with LLVM_IAS=1, there is an error because
'-fatal-warnings' is not recognized as a valid flag:
  clang: error: unsupported argument '-fatal-warnings' to option '-Wa,'
Use the double hyphen version of the flag, '--fatal-warnings', which
works with both the GNU assembler and LLVM's integrated assembler.
Fixes: 608d4a5ca5 ("powerpc: Error on assembly warnings")
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Justin Stitt <justinstitt@google.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://msgid.link/20240405-ppc-fix-wa-fatal-warnings-clang-v1-1-bdcd969f2ef0@kernel.org
		
	
			
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			495 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			495 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror -Wa,--fatal-warnings
 | 
						|
subdir-asflags-$(CONFIG_PPC_WERROR) := -Wa,--fatal-warnings
 | 
						|
 | 
						|
obj-y += kernel/
 | 
						|
obj-y += mm/
 | 
						|
obj-y += lib/
 | 
						|
obj-y += sysdev/
 | 
						|
obj-y += platforms/
 | 
						|
obj-y += math-emu/
 | 
						|
obj-y += crypto/
 | 
						|
obj-y += net/
 | 
						|
 | 
						|
obj-$(CONFIG_XMON) += xmon/
 | 
						|
obj-$(CONFIG_KVM)  += kvm/
 | 
						|
 | 
						|
obj-$(CONFIG_PERF_EVENTS) += perf/
 | 
						|
obj-$(CONFIG_KEXEC_CORE)  += kexec/
 | 
						|
obj-$(CONFIG_KEXEC_FILE)  += purgatory/
 | 
						|
 | 
						|
# for cleaning
 | 
						|
subdir- += boot
 |