mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	Add option to use O3 optimization as not all devices have space constraints. This option is default using GCC in upstream but isn't in the CMake makefile for some reason. Source: https://github.com/madler/zlib/blob/master/configure#L170 Signed-off-by: Daniel Engberg <daniel.engberg.lists@pyret.net>
		
			
				
	
	
		
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			231 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "Configuration"
 | |
| 	depends on PACKAGE_zlib
 | |
| 
 | |
| config ZLIB_OPTIMIZE_SPEED
 | |
| 	bool "Optimize for speed"
 | |
| 	help
 | |
| 		This enables additional optimization and 
 | |
| 		increases performance considerably at 
 | |
| 		the expense of binary size.
 | |
| 
 | |
| endmenu
 |