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
|
2014-07-27 22:52:00 +08:00
|
|
|
default GCC_USE_VERSION_4_6_LINARO if TARGET_octeon
|
2014-03-10 19:20:33 +08:00
|
|
|
default GCC_USE_VERSION_4_8_LINARO
|
2005-01-16 19:43:02 +08:00
|
|
|
help
|
|
|
|
Select the version of gcc you wish to use.
|
|
|
|
|
2013-04-18 20:04:40 +08:00
|
|
|
config GCC_USE_VERSION_4_6_LINARO
|
|
|
|
select GCC_VERSION_4_6_LINARO
|
2011-08-18 20:13:54 +08:00
|
|
|
bool "gcc 4.6.x with Linaro enhancements"
|
|
|
|
|
2013-05-04 21:37:41 +08:00
|
|
|
config GCC_USE_VERSION_4_8_LINARO
|
|
|
|
select GCC_VERSION_4_8_LINARO
|
|
|
|
bool "gcc 4.8.x with Linaro enhancements"
|
2013-04-03 00:00:35 +08:00
|
|
|
|
2015-08-17 04:20:36 +08:00
|
|
|
config GCC_USE_VERSION_5
|
|
|
|
select GCC_VERSION_5
|
|
|
|
bool "gcc 5.x"
|
|
|
|
|
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"
|
2013-04-17 23:36:41 +08:00
|
|
|
depends on GCC_USE_GRAPHITE
|
2010-04-21 00:18:08 +08:00
|
|
|
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
|
2015-06-22 18:31:07 +08:00
|
|
|
depends on !USE_MUSL
|
|
|
|
default y if !USE_MUSL
|
2008-07-30 20:54:28 +08:00
|
|
|
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.
|
|
|
|
|
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 ?
|