summaryrefslogtreecommitdiff
path: root/config/libc
diff options
context:
space:
mode:
Diffstat (limited to 'config/libc')
-rw-r--r--config/libc/eglibc.in5
-rw-r--r--config/libc/newlib.in42
2 files changed, 47 insertions, 0 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in
index 81cdb1d..ced8d95 100644
--- a/config/libc/eglibc.in
+++ b/config/libc/eglibc.in
@@ -36,6 +36,10 @@ config EGLIBC_V_2_9
bool
prompt "2_9"
+config LIBC_V_2_10
+ bool
+ prompt "2_10"
+
# CT_INSERT_VERSION_ABOVE
# Don't remove above line!
@@ -55,6 +59,7 @@ config LIBC_VERSION
default "2_7" if EGLIBC_V_2_7
default "2_8" if EGLIBC_V_2_8
default "2_9" if EGLIBC_V_2_9
+ default "2_10" if LIBC_V_2_10
# CT_INSERT_VERSION_STRING_ABOVE
# Don't remove above line!
diff --git a/config/libc/newlib.in b/config/libc/newlib.in
new file mode 100644
index 0000000..c4b9e08
--- /dev/null
+++ b/config/libc/newlib.in
@@ -0,0 +1,42 @@
+# newlib options
+# depends on EXPERIMENTAL
+
+config LIBC_newlib
+ help
+ Newlib is a C library intended for use on embedded systems. It is a
+ conglomeration of several library parts, all under free software
+ licenses that make them easily usable on embedded products. Newlib
+ is only available in source form. It can be compiled for a wide
+ array of processors, and will usually work on any architecture with
+ the addition of a few low-level routines.
+
+choice
+ bool
+ prompt "newlib version"
+
+config NEWLIB_V_1_17_0
+ bool
+ prompt "1.17.0"
+
+# CT_INSERT_VERSION_ABOVE
+# Don't remove above line!
+
+endchoice
+
+config LIBC_VERSION
+ string
+ default "1.17.0" if NEWLIB_V_1_17_0
+
+# CT_INSERT_VERSION_STRING_ABOVE
+# Don't remove above line!
+
+config ATMEL_AVR32_HEADERS
+ bool
+ prompt "Install Atmel AVR32 headers"
+ 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.
+