mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	The private libgcc is supported only on ARM, MIPS, PowerPC, SH, x86. Those architectures should "select" HAVE_PRIVATE_LIBGCC and CONFIG_USE_PRIVATE_LIBGCC should depend on it. Currently, this option is enabled on Tegra boards and x86 architecture. Move the definition from header files to Kconfig. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Tested-by: Simon Glass <sjg@chromium.org> Acked-by: Simon Glass <sjg@chromium.org> Cc: Stephen Warren <swarren@nvidia.com> Cc: Tom Warren <twarren@nvidia.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			673 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			673 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| menu "Library routines"
 | |
| 
 | |
| config CC_OPTIMIZE_LIBS_FOR_SPEED
 | |
| 	bool "Optimize libraries for speed"
 | |
| 	help
 | |
| 	  Enabling this option will pass "-O2" to gcc when compiling
 | |
| 	  under "lib" directory.
 | |
| 
 | |
| 	  If unsure, say N.
 | |
| 
 | |
| config HAVE_PRIVATE_LIBGCC
 | |
| 	bool
 | |
| 
 | |
| config USE_PRIVATE_LIBGCC
 | |
| 	bool "Use private libgcc"
 | |
| 	depends on HAVE_PRIVATE_LIBGCC
 | |
| 	help
 | |
| 	  This option allows you to use the built-in libgcc implementation
 | |
| 	  of U-boot instead of the one privided by the compiler.
 | |
| 	  If unsure, say N.
 | |
| 
 | |
| config SYS_HZ
 | |
| 	int
 | |
| 	default 1000
 | |
| 	help
 | |
| 	  The frequency of the timer returned by get_timer().
 | |
| 	  get_timer() must operate in milliseconds and this option must be
 | |
| 	  set to 1000.
 | |
| 
 | |
| endmenu
 |