mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 04:31:19 +00:00 
			
		
		
		
	 ba55bd7436
			
		
	
	
		ba55bd7436
		
	
	
	
	
		
			
			Add the option to build the code under arch/powerpc with -Werror. The intention is to make it harder for people to inadvertantly introduce warnings in the arch/powerpc code. It needs to be configurable so that if a warning is introduced, people can easily work around it while it's being fixed. The option is a negative, ie. don't enable -Werror, so that it will be turned on for allyes and allmodconfig builds. The default is n, in the hope that developers will build with -Werror, that will probably lead to some build breaks, I am prepared to be flamed. It's not enabled for math-emu, which is a steaming pile of warnings. Signed-off-by: Michael Ellerman <michael@ellerman.id.au> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
		
			
				
	
	
		
			33 lines
		
	
	
		
			775 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			33 lines
		
	
	
		
			775 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for ppc-specific library files..
 | |
| #
 | |
| 
 | |
| subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror
 | |
| 
 | |
| ifeq ($(CONFIG_PPC64),y)
 | |
| EXTRA_CFLAGS		+= -mno-minimal-toc
 | |
| endif
 | |
| 
 | |
| CFLAGS_REMOVE_code-patching.o = -pg
 | |
| CFLAGS_REMOVE_feature-fixups.o = -pg
 | |
| 
 | |
| obj-y			:= string.o alloc.o \
 | |
| 			   checksum_$(CONFIG_WORD_SIZE).o
 | |
| obj-$(CONFIG_PPC32)	+= div64.o copy_32.o crtsavres.o
 | |
| obj-$(CONFIG_HAS_IOMEM)	+= devres.o
 | |
| 
 | |
| obj-$(CONFIG_PPC64)	+= copypage_64.o copyuser_64.o \
 | |
| 			   memcpy_64.o usercopy_64.o mem_64.o string.o
 | |
| obj-$(CONFIG_XMON)	+= sstep.o
 | |
| obj-$(CONFIG_KPROBES)	+= sstep.o
 | |
| 
 | |
| ifeq ($(CONFIG_PPC64),y)
 | |
| obj-$(CONFIG_SMP)	+= locks.o
 | |
| endif
 | |
| 
 | |
| obj-$(CONFIG_PPC_LIB_RHEAP) += rheap.o
 | |
| 
 | |
| obj-y			+= code-patching.o
 | |
| obj-y			+= feature-fixups.o
 | |
| obj-$(CONFIG_FTR_FIXUP_SELFTEST) += feature-fixups-test.o
 |