diff options
author | Heiko Zuerker <heiko@zuerker.org> | 2010-12-29 19:34:53 +0100 |
---|---|---|
committer | Heiko Zuerker <heiko@zuerker.org> | 2010-12-29 19:34:53 +0100 |
commit | 4e8ab6eefde8c4943df2374fc47774c0fc271475 (patch) | |
tree | a3b5a74947fb177f06b960d567d102c8ee4d9769 | |
parent | fa32e39096fbc3fae403f483d732ed54c96b4096 (diff) | |
download | crosstool-ng-4e8ab6eefde8c4943df2374fc47774c0fc271475.tar.gz crosstool-ng-4e8ab6eefde8c4943df2374fc47774c0fc271475.tar.bz2 crosstool-ng-4e8ab6eefde8c4943df2374fc47774c0fc271475.zip |
libc/glibc: add 2.12.1 and 2.12.2
Signed-off-by: Heiko Zuerker <heiko@zuerker.org>
-rw-r--r-- | config/libc/glibc.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 3c904bc5..531555eb 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -42,6 +42,16 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config LIBC_GLIBC_V_2_12_2 + bool + prompt "2.12.2 (EXPERIMENTAL)" + depends on EXPERIMENTAL + +config LIBC_GLIBC_V_2_12_1 + bool + prompt "2.12.1 (EXPERIMENTAL)" + depends on EXPERIMENTAL + config LIBC_GLIBC_V_2_11_1 bool prompt "2.11.1 (EXPERIMENTAL)" @@ -102,6 +112,8 @@ config LIBC_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "2.12.2" if LIBC_GLIBC_V_2_12_2 + default "2.12.1" if LIBC_GLIBC_V_2_12_1 default "2.11.1" if LIBC_GLIBC_V_2_11_1 default "2.11" if LIBC_GLIBC_V_2_11 default "2.10.1" if LIBC_V_2_10_1 |