diff options
author | Cristoforo Cataldo <cristoforo.cataldo@gmail.com> | 2015-01-06 23:39:49 +0100 |
---|---|---|
committer | Cristoforo Cataldo <cristoforo.cataldo@gmail.com> | 2015-01-16 22:07:44 +0100 |
commit | 01397b7e5a3b0633c0a8cd9e75e9b84441b414a8 (patch) | |
tree | 925038a20daf04e4298509b2e7c862e03d1ea151 /config/libc | |
parent | 315f69271ccacb1007ad16d9e641978d228b6d89 (diff) | |
download | crosstool-ng-01397b7e5a3b0633c0a8cd9e75e9b84441b414a8.tar.gz crosstool-ng-01397b7e5a3b0633c0a8cd9e75e9b84441b414a8.tar.bz2 crosstool-ng-01397b7e5a3b0633c0a8cd9e75e9b84441b414a8.zip |
libc: newlib: Add NewLib 2.2.0, Linaro NewLib 2.2.0-2015.01 and 2.1.0-2014.09
This commit allows to choose, download and build latest NewLib:
- newlib-2.2.0
- newlib-linaro-2.2.0-2015.01
- newlib-linaro-2.1.0-2014.09
Signed-off-by: Cristoforo Cataldo <cristoforo.cataldo@gmail.com>
Diffstat (limited to 'config/libc')
-rw-r--r-- | config/libc/newlib.in | 21 |
1 files changed, 17 insertions, 4 deletions
diff --git a/config/libc/newlib.in b/config/libc/newlib.in index fe21a701..8109354c 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 |