summaryrefslogtreecommitdiff
path: root/config/libc
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2015-01-26 16:02:32 (GMT)
committerBryan Hundven <bryanhundven@gmail.com>2015-01-26 16:02:32 (GMT)
commit0a6b755fea0385bc38d07cacc059258338b5be65 (patch)
tree97d3e802d87187bbae61c7c427a9303631dd8ace /config/libc
parentcf3fc4244ce0541c6fb671ff2004e83951be798d (diff)
parent42e6c434d7fb35860bb8e6a0303ffaf7d706d68d (diff)
Merge pull request #24 from Christopher83/master
Add the support to choose, download and build latest Linaro toolchain components
Diffstat (limited to 'config/libc')
-rw-r--r--config/libc/eglibc.in6
-rw-r--r--config/libc/glibc.in6
-rw-r--r--config/libc/newlib.in21
3 files changed, 29 insertions, 4 deletions
diff --git a/config/libc/eglibc.in b/config/libc/eglibc.in
index 8504cbf..d1ecd0f 100644
--- a/config/libc/eglibc.in
+++ b/config/libc/eglibc.in
@@ -21,6 +21,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config LIBC_EGLIBC_LINARO_V_2_19
+ bool
+ prompt "Linaro 2.19-2014.08"
+ select LIBC_EGLIBC_2_16_or_later
+
config LIBC_EGLIBC_V_2_18
bool
prompt "2_18"
@@ -92,6 +97,7 @@ config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "linaro-2.19-2014.08" if LIBC_EGLIBC_LINARO_V_2_19
default "2_18" if LIBC_EGLIBC_V_2_18
default "2_17" if LIBC_EGLIBC_V_2_17
default "2_16" if LIBC_EGLIBC_V_2_16
diff --git a/config/libc/glibc.in b/config/libc/glibc.in
index f107438..42575f7 100644
--- a/config/libc/glibc.in
+++ b/config/libc/glibc.in
@@ -17,6 +17,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config LIBC_GLIBC_LINARO_V_2_20
+ bool
+ prompt "Linaro 2.20-2014.11"
+ select LIBC_GLIBC_2_20_or_later
+
config LIBC_GLIBC_V_2_20
bool
prompt "2.20"
@@ -126,6 +131,7 @@ config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "linaro-2.20-2014.11" if LIBC_GLIBC_LINARO_V_2_20
default "2.20" if LIBC_GLIBC_V_2_20
default "2.19" if LIBC_GLIBC_V_2_19
default "2.18" if LIBC_GLIBC_V_2_18
diff --git a/config/libc/newlib.in b/config/libc/newlib.in
index fe21a70..8109354 100644
--- a/config/libc/newlib.in
+++ b/config/libc/newlib.in
@@ -19,15 +19,25 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config LIBC_NEWLIB_LINARO_V_2_2_0
+ bool
+ prompt "Linaro 2.2.0-2015.01"
+
+config LIBC_NEWLIB_V_2_2_0
+ bool
+ prompt "2.2.0"
+
+config LIBC_NEWLIB_LINARO_V_2_1_0
+ bool
+ prompt "Linaro 2.1.0-2014.09"
+
config LIBC_NEWLIB_V_2_1_0
bool
- prompt "2.1.0 (EXPERIMENTAL)"
- depends on EXPERIMENTAL
+ prompt "2.1.0"
config LIBC_NEWLIB_V_2_0_0
bool
- prompt "2.0.0 (EXPERIMENTAL)"
- depends on EXPERIMENTAL
+ prompt "2.0.0"
config LIBC_NEWLIB_V_1_20_0
bool
@@ -68,6 +78,9 @@ config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "linaro-2.2.0-2015.01" if LIBC_NEWLIB_LINARO_V_2_2_0
+ default "2.2.0" if LIBC_NEWLIB_V_2_2_0
+ default "linaro-2.1.0-2014.09" if LIBC_NEWLIB_LINARO_V_2_1_0
default "2.1.0" if LIBC_NEWLIB_V_2_1_0
default "2.0.0" if LIBC_NEWLIB_V_2_0_0
default "1.20.0" if LIBC_NEWLIB_V_1_20_0