diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-11 12:22:47 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2008-08-11 12:22:47 +0000 |
commit | 59ef10f5d6419ff759ed58cf1f352205784e6eab (patch) | |
tree | f64f9a149e7726ac935c58acfb31d37dd33aab54 /config/libc.in | |
parent | 57755ca74b11a2f23cd6c2fd8eef74a07b650a01 (diff) | |
download | crosstool-ng-59ef10f5d6419ff759ed58cf1f352205784e6eab.tar.gz crosstool-ng-59ef10f5d6419ff759ed58cf1f352205784e6eab.tar.bz2 crosstool-ng-59ef10f5d6419ff759ed58cf1f352205784e6eab.zip |
Merge the branches/eglibc stuff:
- Add support for eglibc
/trunk/scripts/functions | 6 4 2 0 ++++--
/trunk/docs/CREDITS | 1 1 0 0 +
/trunk/config/libc.in | 12 12 0 0 ++++++++++++
/trunk/arch/arm/functions | 4 2 2 0 ++--
4 files changed, 19 insertions(+), 4 deletions(-)
Diffstat (limited to 'config/libc.in')
-rw-r--r-- | config/libc.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/config/libc.in b/config/libc.in index 10c89c50..d9da03a2 100644 --- a/config/libc.in +++ b/config/libc.in @@ -13,6 +13,13 @@ config LIBC_GLIBC select LIBC_SUPPORT_NPTL select LIBC_SUPPORT_LINUXTHREADS +config LIBC_EGLIBC + bool + prompt "eglibc (EXPERIMENTAL)" + select LIBC_SUPPORT_NPTL + select LIBC_SUPPORT_LINUXTHREADS + depends on EXPERIMENTAL + config LIBC_UCLIBC bool prompt "uClibc" @@ -26,6 +33,7 @@ config LIBC_VERSION config LIBC string default "glibc" if LIBC_GLIBC + default "eglibc" if LIBC_EGLIBC default "uClibc" if LIBC_UCLIBC config LIBC_SUPPORT_NPTL @@ -40,6 +48,10 @@ if LIBC_GLIBC source config/libc/glibc.in endif +if LIBC_EGLIBC +source config/libc/eglibc.in +endif + if LIBC_UCLIBC source config/libc/uClibc.in endif |