2009-05-22 14:46:18 +00:00
|
|
|
# newlib options
|
|
|
|
|
2011-05-08 17:02:44 +00:00
|
|
|
## depends on BARE_METAL
|
|
|
|
##
|
|
|
|
## select LIBC_SUPPORT_THREADS_NONE
|
2012-11-22 22:56:58 +00:00
|
|
|
## select CC_CORE_PASSES_NEEDED
|
2011-05-08 17:02:44 +00:00
|
|
|
##
|
|
|
|
## help Newlib is a C library intended for use on embedded systems. It is a
|
|
|
|
## help conglomeration of several library parts, all under free software
|
|
|
|
## help licenses that make them easily usable on embedded products. Newlib
|
|
|
|
## help is only available in source form. It can be compiled for a wide
|
|
|
|
## help array of processors, and will usually work on any architecture with
|
|
|
|
## help the addition of a few low-level routines.
|
2009-05-22 14:46:18 +00:00
|
|
|
|
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "newlib version"
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
2009-05-22 14:46:18 +00:00
|
|
|
|
2013-12-31 11:25:27 +00:00
|
|
|
config LIBC_NEWLIB_V_2_1_0
|
|
|
|
bool
|
|
|
|
prompt "2.1.0 (EXPERIMENTAL)"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
2012-12-26 23:57:26 +00:00
|
|
|
config LIBC_NEWLIB_V_2_0_0
|
|
|
|
bool
|
|
|
|
prompt "2.0.0 (EXPERIMENTAL)"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
2012-09-16 18:12:22 +00:00
|
|
|
config LIBC_NEWLIB_V_1_20_0
|
|
|
|
bool
|
2012-12-26 18:54:12 +00:00
|
|
|
prompt "1.20.0"
|
2012-09-16 18:12:22 +00:00
|
|
|
|
2011-07-06 22:01:50 +00:00
|
|
|
config LIBC_NEWLIB_V_1_19_0
|
|
|
|
bool
|
2012-12-26 18:54:12 +00:00
|
|
|
prompt "1.19.0"
|
2011-07-06 22:01:50 +00:00
|
|
|
|
2010-01-10 16:32:32 +00:00
|
|
|
config LIBC_NEWLIB_V_1_18_0
|
|
|
|
bool
|
2012-12-26 18:54:12 +00:00
|
|
|
prompt "1.18.0"
|
2010-01-10 16:32:32 +00:00
|
|
|
|
2009-10-26 17:47:11 +00:00
|
|
|
config LIBC_NEWLIB_V_1_17_0
|
2009-05-22 14:46:18 +00:00
|
|
|
bool
|
|
|
|
prompt "1.17.0"
|
|
|
|
|
2012-10-11 04:39:45 +00:00
|
|
|
config LIBC_NEWLIB_CUSTOM
|
|
|
|
bool
|
|
|
|
prompt "Custom newlib"
|
|
|
|
depends on EXPERIMENTAL
|
|
|
|
|
2009-05-22 14:46:18 +00:00
|
|
|
endchoice
|
|
|
|
|
2012-10-11 04:39:45 +00:00
|
|
|
if LIBC_NEWLIB_CUSTOM
|
|
|
|
|
|
|
|
config LIBC_NEWLIB_CUSTOM_LOCATION
|
|
|
|
string
|
|
|
|
prompt "Full path to custom newlib source"
|
|
|
|
default ""
|
|
|
|
help
|
|
|
|
Enter the path to the directory (or tarball) of your source for newlib,
|
|
|
|
or leave blank to use default CT_CUSTOM_LOCATION_ROOT_DIR/newlib
|
|
|
|
|
|
|
|
endif # LIBC_NEWLIB_CUSTOM
|
|
|
|
|
2009-05-22 14:46:18 +00:00
|
|
|
config LIBC_VERSION
|
|
|
|
string
|
2009-09-13 16:38:06 +00:00
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2014-01-02 09:35:44 +00:00
|
|
|
default "2.1.0" if LIBC_NEWLIB_V_2_1_0
|
2012-12-26 23:57:26 +00:00
|
|
|
default "2.0.0" if LIBC_NEWLIB_V_2_0_0
|
2012-09-16 18:12:22 +00:00
|
|
|
default "1.20.0" if LIBC_NEWLIB_V_1_20_0
|
2011-07-06 22:01:50 +00:00
|
|
|
default "1.19.0" if LIBC_NEWLIB_V_1_19_0
|
2010-01-10 16:32:32 +00:00
|
|
|
default "1.18.0" if LIBC_NEWLIB_V_1_18_0
|
2009-10-26 17:47:11 +00:00
|
|
|
default "1.17.0" if LIBC_NEWLIB_V_1_17_0
|
2012-10-11 04:39:45 +00:00
|
|
|
default "custom" if LIBC_NEWLIB_CUSTOM
|
2009-10-26 21:00:30 +00:00
|
|
|
help
|
|
|
|
Enter the tag you want to use.
|
|
|
|
Leave empty to use the 'head' of the repository.
|
|
|
|
|
|
|
|
comment "Architecture specific options"
|
2009-05-22 14:46:18 +00:00
|
|
|
|
2009-05-23 18:46:42 +00:00
|
|
|
config ATMEL_AVR32_HEADERS
|
|
|
|
bool
|
|
|
|
prompt "Install Atmel AVR32 headers"
|
2009-10-21 20:51:39 +00:00
|
|
|
depends on ARCH_avr32
|
2009-05-23 18:46:42 +00:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Install Atmel AVR32 headers for native AVR32 development. Most
|
|
|
|
AVR32 MCU devices are supported.
|
|
|
|
|
|
|
|
If you do native AVR32 development you want to say 'Y' here.
|