forked from mirrors/linux
		
	Add -Werror-implicit-function-declaration
Add -Werror-implicit-function-declaration This makes builds fail sooner if something is implicitly defined instead of having to wait half an hour for it to fail at the linking stage. Signed-off-by: Dave Jones <davej@redhat.com> Cc: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									cc2ea416b2
								
							
						
					
					
						commit
						94bed2a9c4
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		
							
								
								
									
										3
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								Makefile
									
									
									
									
									
								
							| 
						 | 
				
			
			@ -313,7 +313,8 @@ LINUXINCLUDE    := -Iinclude \
 | 
			
		|||
CPPFLAGS        := -D__KERNEL__ $(LINUXINCLUDE)
 | 
			
		||||
 | 
			
		||||
CFLAGS          := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
 | 
			
		||||
                   -fno-strict-aliasing -fno-common
 | 
			
		||||
		   -fno-strict-aliasing -fno-common \
 | 
			
		||||
		   -Werror-implicit-function-declaration
 | 
			
		||||
AFLAGS          := -D__ASSEMBLY__
 | 
			
		||||
 | 
			
		||||
# Read KERNELRELEASE from include/config/kernel.release (if it exists)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue