diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-04-25 13:31:24 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-04-25 13:31:24 -0700 |
commit | a90d8fd07527e3b858588040a30e4c6e8bb4b2f1 (patch) | |
tree | 6357bba67210ac9cf474cc84257a45ca7df5392e | |
parent | 48ea314e0121ecd73b25e1f00e189302d61a405b (diff) | |
parent | aa8b3252d94b3ffa601671abe30e3331c9489572 (diff) | |
download | crosstool-ng-a90d8fd07527e3b858588040a30e4c6e8bb4b2f1.tar.gz crosstool-ng-a90d8fd07527e3b858588040a30e4c6e8bb4b2f1.tar.bz2 crosstool-ng-a90d8fd07527e3b858588040a30e4c6e8bb4b2f1.zip |
Merge pull request #46 from stefanct/master
Add glibc 2.21
-rw-r--r-- | config/libc/glibc.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/config/libc/glibc.in b/config/libc/glibc.in index 42575f72..9a0ec9c2 100644 --- a/config/libc/glibc.in +++ b/config/libc/glibc.in @@ -6,7 +6,7 @@ ## select CC_CORE_PASSES_NEEDED ## ## help The de-facto standard for Linux distributions. -## help Feature-rich, but large... Most usefull for desktop-like systems. +## help Feature-rich, but large... Most useful for desktop-like systems. config THREADS default "nptl" @@ -17,6 +17,11 @@ choice # Don't remove next line # CT_INSERT_VERSION_BELOW +config LIBC_GLIBC_V_2_21 + bool + prompt "2.21" + select LIBC_GLIBC_2_20_or_later + config LIBC_GLIBC_LINARO_V_2_20 bool prompt "Linaro 2.20-2014.11" @@ -131,6 +136,7 @@ config LIBC_VERSION string # Don't remove next line # CT_INSERT_VERSION_STRING_BELOW + default "2.21" if LIBC_GLIBC_V_2_21 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 |