2005-01-16 13:43:02 +02:00
|
|
|
# Choose gcc version.
|
2006-03-19 05:50:18 +02:00
|
|
|
|
2005-01-16 13:43:02 +02:00
|
|
|
choice
|
2006-04-21 02:03:42 +03:00
|
|
|
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
2012-04-09 20:00:03 +03:00
|
|
|
default GCC_VERSION_4_4_7 if GCC_DEFAULT_VERSION_4_4_7
|
2012-02-12 11:14:18 +02:00
|
|
|
default GCC_VERSION_4_6_LINARO
|
2005-01-16 13:43:02 +02:00
|
|
|
help
|
|
|
|
Select the version of gcc you wish to use.
|
|
|
|
|
2012-04-09 20:00:03 +03:00
|
|
|
config GCC_VERSION_4_4_7
|
|
|
|
bool "gcc 4.4.7"
|
2011-07-08 14:15:00 +03:00
|
|
|
depends (avr32 || ubicom32)
|
2010-10-04 15:21:58 +03:00
|
|
|
|
2012-02-12 11:48:39 +02:00
|
|
|
config GCC_VERSION_4_6_2
|
|
|
|
bool "gcc 4.6.2"
|
2010-08-01 15:39:19 +03:00
|
|
|
|
2012-04-07 18:34:41 +03:00
|
|
|
config GCC_VERSION_4_7_0
|
|
|
|
bool "gcc 4.7.0"
|
|
|
|
|
2011-08-18 15:06:17 +03:00
|
|
|
config GCC_VERSION_4_5_LINARO
|
2011-06-07 03:13:56 +03:00
|
|
|
bool "gcc 4.5.x with Linaro enhancements"
|
2010-10-29 13:37:51 +03:00
|
|
|
|
2011-08-18 15:13:54 +03:00
|
|
|
config GCC_VERSION_4_6_LINARO
|
|
|
|
bool "gcc 4.6.x with Linaro enhancements"
|
|
|
|
|
2012-04-21 12:58:31 +03:00
|
|
|
config GCC_VERSION_4_7_LINARO
|
|
|
|
bool "gcc 4.7.x with Linaro enhancements"
|
|
|
|
|
2009-10-10 22:25:48 +03:00
|
|
|
config GCC_VERSION_LLVM
|
|
|
|
bool "llvm-gcc 4.2"
|
2009-10-20 23:52:42 +03:00
|
|
|
depends BROKEN
|
2009-10-19 05:09:52 +03:00
|
|
|
|
2005-01-16 13:43:02 +02:00
|
|
|
endchoice
|
|
|
|
|
2009-11-12 15:42:07 +02:00
|
|
|
config GCC_USE_GRAPHITE
|
|
|
|
bool
|
|
|
|
prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
|
2011-07-02 10:50:26 +03:00
|
|
|
depends !GCC_VERSION_LLVM
|
2010-04-20 19:18:08 +03:00
|
|
|
|
|
|
|
config GCC_USE_SYSTEM_PPL_CLOOG
|
|
|
|
bool
|
2010-04-21 00:13:12 +03:00
|
|
|
prompt "Use the system versions of PPL and CLooG"
|
2010-04-20 19:18:08 +03:00
|
|
|
depends GCC_USE_GRAPHITE
|
|
|
|
default n
|
2009-11-12 15:42:07 +02:00
|
|
|
|
2006-04-21 02:03:42 +03:00
|
|
|
config EXTRA_GCC_CONFIG_OPTIONS
|
2005-04-05 21:21:58 +03:00
|
|
|
string
|
2009-09-10 17:32:36 +03:00
|
|
|
prompt "Additional gcc configure options" if TOOLCHAINOPTS
|
2005-01-16 13:43:02 +02:00
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Any additional gcc options you may want to include....
|
|
|
|
|
2008-07-30 15:54:28 +03:00
|
|
|
config SSP_SUPPORT
|
|
|
|
bool
|
2009-09-10 02:42:06 +03:00
|
|
|
prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
|
2008-07-30 15:54:28 +03:00
|
|
|
default n
|
|
|
|
help
|
2009-09-10 02:42:06 +03:00
|
|
|
Enable Stack-Smashing Protection support
|
2008-07-30 15:54:28 +03:00
|
|
|
|
2010-02-26 13:01:28 +02:00
|
|
|
config TLS_SUPPORT
|
|
|
|
bool
|
|
|
|
prompt "Enable Thread-local storage (TLS) support" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Enable Thread-local storage support
|
|
|
|
|
2011-06-23 14:37:39 +03: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 02:03:42 +03:00
|
|
|
config INSTALL_LIBSTDCPP
|
2005-04-05 21:21:58 +03:00
|
|
|
bool
|
2006-04-21 02:03:42 +03:00
|
|
|
prompt "Build/install c++ compiler and libstdc++?" if TOOLCHAINOPTS
|
2005-04-26 01:51:50 +03:00
|
|
|
default y
|
2005-01-16 13:43:02 +02:00
|
|
|
help
|
|
|
|
Build/install c++ compiler and libstdc++?
|
|
|
|
|
2007-08-04 13:59:02 +03:00
|
|
|
config INSTALL_LIBGCJ
|
|
|
|
bool
|
2011-01-27 15:55:00 +02:00
|
|
|
depends on !GCC_VERSION_LLVM
|
2007-08-04 13:59:02 +03:00
|
|
|
prompt "Build/install java compiler and GNU classpath ?" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Build/install java compiler and GNU classpath ?
|
2011-06-23 14:46:24 +03:00
|
|
|
|
|
|
|
|
|
|
|
config INSTALL_GFORTRAN
|
|
|
|
bool
|
|
|
|
prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Build/install GNU fortran compiler ?
|