mirror of
				https://github.com/torvalds/linux.git
				synced 2025-10-31 00:28:52 +02:00 
			
		
		
		
	gcc-plugins: randstruct: Remove GCC 4.7 or newer requirement
Since the kernel currently requires GCC 5.1 as a minimum, remove the unnecessary GCC version >= 4.7 check. Signed-off-by: Thorsten Blum <thorsten.blum@toblux.com> Link: https://lore.kernel.org/r/20240723165332.1947-1-thorsten.blum@toblux.com Signed-off-by: Kees Cook <kees@kernel.org>
This commit is contained in:
		
							parent
							
								
									f91f7ac900
								
							
						
					
					
						commit
						f32e90c068
					
				
					 1 changed files with 0 additions and 4 deletions
				
			
		|  | @ -19,10 +19,6 @@ | |||
| #include "gcc-common.h" | ||||
| #include "randomize_layout_seed.h" | ||||
| 
 | ||||
| #if BUILDING_GCC_MAJOR < 4 || (BUILDING_GCC_MAJOR == 4 && BUILDING_GCC_MINOR < 7) | ||||
| #error "The RANDSTRUCT plugin requires GCC 4.7 or newer." | ||||
| #endif | ||||
| 
 | ||||
| #define ORIG_TYPE_NAME(node) \ | ||||
| 	(TYPE_NAME(TYPE_MAIN_VARIANT(node)) != NULL_TREE ? ((const unsigned char *)IDENTIFIER_POINTER(TYPE_NAME(TYPE_MAIN_VARIANT(node)))) : (const unsigned char *)"anonymous") | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
		Reference in a new issue
	
	 Thorsten Blum
						Thorsten Blum