2005-01-16 19:43:02 +08:00
|
|
|
# Choose gcc version.
|
2006-03-19 11:50:18 +08:00
|
|
|
|
2005-01-16 19:43:02 +08:00
|
|
|
choice
|
2006-04-21 07:03:42 +08:00
|
|
|
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
2012-04-10 01:00:03 +08:00
|
|
|
default GCC_VERSION_4_4_7 if GCC_DEFAULT_VERSION_4_4_7
|
2012-02-12 17:14:18 +08:00
|
|
|
default GCC_VERSION_4_6_LINARO
|
2005-01-16 19:43:02 +08:00
|
|
|
help
|
|
|
|
Select the version of gcc you wish to use.
|
|
|
|
|
2012-04-10 01:00:03 +08:00
|
|
|
config GCC_VERSION_4_4_7
|
|
|
|
bool "gcc 4.4.7"
|
2012-11-30 18:53:55 +08:00
|
|
|
depends avr32
|
2010-10-04 20:21:58 +08:00
|
|
|
|
2012-10-14 21:35:13 +08:00
|
|
|
config GCC_VERSION_4_6_3
|
|
|
|
bool "gcc 4.6.3"
|
|
|
|
|
2012-10-14 21:35:19 +08:00
|
|
|
config GCC_VERSION_4_7_2
|
|
|
|
bool "gcc 4.7.2"
|
|
|
|
|
2011-08-18 20:13:54 +08:00
|
|
|
config GCC_VERSION_4_6_LINARO
|
|
|
|
bool "gcc 4.6.x with Linaro enhancements"
|
|
|
|
|
2012-04-21 17:58:31 +08:00
|
|
|
config GCC_VERSION_4_7_LINARO
|
|
|
|
bool "gcc 4.7.x with Linaro enhancements"
|
|
|
|
|
2013-04-03 00:00:35 +08:00
|
|
|
config GCC_VERSION_4_8_0
|
|
|
|
bool "gcc 4.8.0"
|
|
|
|
|
2005-01-16 19:43:02 +08:00
|
|
|
endchoice
|
|
|
|
|
2009-11-12 21:42:07 +08:00
|
|
|
config GCC_USE_GRAPHITE
|
|
|
|
bool
|
|
|
|
prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
|
2010-04-21 00:18:08 +08:00
|
|
|
|
|
|
|
config GCC_USE_SYSTEM_PPL_CLOOG
|
|
|
|
bool
|
2010-04-21 05:13:12 +08:00
|
|
|
prompt "Use the system versions of PPL and CLooG"
|
2010-04-21 00:18:08 +08:00
|
|
|
depends GCC_USE_GRAPHITE
|
|
|
|
default n
|
2009-11-12 21:42:07 +08:00
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
config EXTRA_GCC_CONFIG_OPTIONS
|
2005-04-06 02:21:58 +08:00
|
|
|
string
|
2009-09-10 22:32:36 +08:00
|
|
|
prompt "Additional gcc configure options" if TOOLCHAINOPTS
|
2005-01-16 19:43:02 +08:00
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Any additional gcc options you may want to include....
|
|
|
|
|
2008-07-30 20:54:28 +08:00
|
|
|
config SSP_SUPPORT
|
|
|
|
bool
|
2009-09-10 07:42:06 +08:00
|
|
|
prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
|
2008-07-30 20:54:28 +08:00
|
|
|
default n
|
|
|
|
help
|
2009-09-10 07:42:06 +08:00
|
|
|
Enable Stack-Smashing Protection support
|
2008-07-30 20:54:28 +08:00
|
|
|
|
2011-06-23 19:37:39 +08:00
|
|
|
config SJLJ_EXCEPTIONS
|
|
|
|
bool
|
|
|
|
prompt "Use setjump()/longjump() exceptions" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Use old setjump()/longjump() exceptions instead of the newer
|
|
|
|
frame unwinding exceptions handling routines. Warning: increases
|
|
|
|
code size and runtime memory usage.
|
|
|
|
|
2006-04-21 07:03:42 +08:00
|
|
|
config INSTALL_LIBSTDCPP
|
2005-04-06 02:21:58 +08:00
|
|
|
bool
|
2006-04-21 07:03:42 +08:00
|
|
|
prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
|
2012-11-24 04:02:29 +08:00
|
|
|
default y if !USE_MUSL
|
2005-01-16 19:43:02 +08:00
|
|
|
help
|
|
|
|
Build/install c++ compiler and libstdc++?
|
|
|
|
|
2007-08-04 18:59:02 +08:00
|
|
|
config INSTALL_LIBGCJ
|
|
|
|
bool
|
|
|
|
prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Build/install java compiler and GNU classpath ?
|
2011-06-23 19:46:24 +08:00
|
|
|
|
|
|
|
|
|
|
|
config INSTALL_GFORTRAN
|
|
|
|
bool
|
|
|
|
prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Build/install GNU fortran compiler ?
|