| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | ## For a description of the syntax of this configuration file,# see extra/config/Kconfig-language.txt#mainmenu "uClibc C Library Configuration"menu "Target Architecture Features and Options"config HAVE_ELF	bool	default yconfig ARCH_CFLAGS	stringconfig ARCH_LDFLAGS	string	default "-mcrislinux"config LIBGCC_CFLAGS	string	default "-mlinux"choice	prompt "Target Architecture Type"	default CONFIG_CRIS	help		This is the architecture type of your CPU. This information is used for		optimizing purposes.		These are the possible settings:		- CRIS  Generic support for Axis' CRIS architecture.config CONFIG_CRIS	bool "CRIS"endchoicesource "extra/Configs/Config.in.arch"endmenusource "extra/Configs/Config.in"
 |