2005-01-16 11:43:02 +00:00
|
|
|
# Choose gcc version.
|
2006-03-19 03:50:18 +00:00
|
|
|
|
2005-01-16 11:43:02 +00:00
|
|
|
choice
|
2006-04-20 23:03:42 +00:00
|
|
|
prompt "GCC compiler Version" if TOOLCHAINOPTS
|
2013-05-22 08:26:57 +00:00
|
|
|
default GCC_USE_VERSION_4_4_7 if avr32
|
2013-04-18 12:04:40 +00:00
|
|
|
default GCC_USE_VERSION_4_6_LINARO
|
2005-01-16 11:43:02 +00:00
|
|
|
help
|
|
|
|
Select the version of gcc you wish to use.
|
|
|
|
|
2013-04-18 12:04:40 +00:00
|
|
|
config GCC_USE_VERSION_4_4_7
|
|
|
|
select GCC_VERSION_4_4_7
|
2012-04-09 17:00:03 +00:00
|
|
|
bool "gcc 4.4.7"
|
2013-04-17 15:36:41 +00:00
|
|
|
depends on avr32
|
2010-10-04 12:21:58 +00:00
|
|
|
|
2013-04-18 12:04:40 +00:00
|
|
|
config GCC_USE_VERSION_4_6_3
|
|
|
|
select GCC_VERSION_4_6_3
|
2012-10-14 13:35:13 +00:00
|
|
|
bool "gcc 4.6.3"
|
|
|
|
|
2013-05-04 13:37:41 +00:00
|
|
|
config GCC_USE_VERSION_4_8_0
|
|
|
|
select GCC_VERSION_4_8_0
|
|
|
|
bool "gcc 4.8.0"
|
|
|
|
|
2013-04-18 12:04:40 +00:00
|
|
|
config GCC_USE_VERSION_4_6_LINARO
|
|
|
|
select GCC_VERSION_4_6_LINARO
|
2011-08-18 12:13:54 +00:00
|
|
|
bool "gcc 4.6.x with Linaro enhancements"
|
|
|
|
|
2013-05-04 13:37:41 +00:00
|
|
|
config GCC_USE_VERSION_4_8_LINARO
|
|
|
|
select GCC_VERSION_4_8_LINARO
|
|
|
|
bool "gcc 4.8.x with Linaro enhancements"
|
2013-04-02 16:00:35 +00:00
|
|
|
|
2005-01-16 11:43:02 +00:00
|
|
|
endchoice
|
|
|
|
|
2009-11-12 13:42:07 +00:00
|
|
|
config GCC_USE_GRAPHITE
|
|
|
|
bool
|
|
|
|
prompt "Compile in support for the new Graphite framework in GCC 4.4+" if TOOLCHAINOPTS
|
2010-04-20 16:18:08 +00:00
|
|
|
|
|
|
|
config GCC_USE_SYSTEM_PPL_CLOOG
|
|
|
|
bool
|
2010-04-20 21:13:12 +00:00
|
|
|
prompt "Use the system versions of PPL and CLooG"
|
2013-04-17 15:36:41 +00:00
|
|
|
depends on GCC_USE_GRAPHITE
|
2010-04-20 16:18:08 +00:00
|
|
|
default n
|
2009-11-12 13:42:07 +00:00
|
|
|
|
2006-04-20 23:03:42 +00:00
|
|
|
config EXTRA_GCC_CONFIG_OPTIONS
|
2005-04-05 18:21:58 +00:00
|
|
|
string
|
2009-09-10 14:32:36 +00:00
|
|
|
prompt "Additional gcc configure options" if TOOLCHAINOPTS
|
2005-01-16 11:43:02 +00:00
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Any additional gcc options you may want to include....
|
|
|
|
|
2008-07-30 12:54:28 +00:00
|
|
|
config SSP_SUPPORT
|
|
|
|
bool
|
2009-09-09 23:42:06 +00:00
|
|
|
prompt "Enable Stack-Smashing Protection support" if TOOLCHAINOPTS
|
2008-07-30 12:54:28 +00:00
|
|
|
default n
|
|
|
|
help
|
2009-09-09 23:42:06 +00:00
|
|
|
Enable Stack-Smashing Protection support
|
2008-07-30 12:54:28 +00:00
|
|
|
|
2011-06-23 11:37:39 +00: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.
|
|
|
|
|
2007-08-04 10:59:02 +00: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 11:46:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
config INSTALL_GFORTRAN
|
|
|
|
bool
|
|
|
|
prompt "Build/install fortran compiler?" if TOOLCHAINOPTS
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
Build/install GNU fortran compiler ?
|