mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	gcc-10: disable 'stringop-overflow' warning for now
This is the final array bounds warning removal for gcc-10 for now. Again, the warning is good, and we should re-enable all these warnings when we have converted all the legacy array declaration cases to flexible arrays. But in the meantime, it's just noise. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									44720996e2
								
							
						
					
					
						commit
						5a76021c2e
					
				
					 1 changed files with 1 additions and 0 deletions
				
			
		
							
								
								
									
										1
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										1
									
								
								Makefile
									
									
									
									
									
								
							| 
						 | 
					@ -880,6 +880,7 @@ KBUILD_CFLAGS += $(call cc-disable-warning, stringop-truncation)
 | 
				
			||||||
# We'll want to enable this eventually, but it's not going away for 5.7 at least
 | 
					# We'll want to enable this eventually, but it's not going away for 5.7 at least
 | 
				
			||||||
KBUILD_CFLAGS += $(call cc-disable-warning, zero-length-bounds)
 | 
					KBUILD_CFLAGS += $(call cc-disable-warning, zero-length-bounds)
 | 
				
			||||||
KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds)
 | 
					KBUILD_CFLAGS += $(call cc-disable-warning, array-bounds)
 | 
				
			||||||
 | 
					KBUILD_CFLAGS += $(call cc-disable-warning, stringop-overflow)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Enabled with W=2, disabled by default as noisy
 | 
					# Enabled with W=2, disabled by default as noisy
 | 
				
			||||||
KBUILD_CFLAGS += $(call cc-disable-warning, maybe-uninitialized)
 | 
					KBUILD_CFLAGS += $(call cc-disable-warning, maybe-uninitialized)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue