diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-05-03 08:40:05 +0000 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-05-03 08:40:05 +0000 |
commit | c3dec3532124ba6033b2b4355e0a89a77421ae66 (patch) | |
tree | fb2b0cc44fc5d78ae38c9724def060a248e28216 | |
parent | 5d8855f2e4c09bcb4ea58436557f2acaff2d9cc6 (diff) | |
download | crosstool-ng-c3dec3532124ba6033b2b4355e0a89a77421ae66.tar.gz crosstool-ng-c3dec3532124ba6033b2b4355e0a89a77421ae66.tar.bz2 crosstool-ng-c3dec3532124ba6033b2b4355e0a89a77421ae66.zip |
1.4: backport #1496 from /trunk:
- For glibc & eglibc, try to auto-select the ports addon for those
architectures that require it (curently, ARM and MIPS are known to).
-------- diffstat follows --------
/branches/1.4/config/libc/glibc-eglibc.in-common | 9 8 1 0 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
-rw-r--r-- | config/libc/glibc-eglibc.in-common | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/config/libc/glibc-eglibc.in-common b/config/libc/glibc-eglibc.in-common index e72c2af0..be8ac88b 100644 --- a/config/libc/glibc-eglibc.in-common +++ b/config/libc/glibc-eglibc.in-common @@ -3,6 +3,13 @@ if LIBC_glibc || LIBC_eglibc +# Some architectures require the ports addon. List them one by one here: +config ARCH_arm + select LIBC_GLIBC_USE_PORTS + +config ARCH_mips + select LIBC_GLIBC_USE_PORTS + comment "glibc/eglibc common options" config LIBC_GLIBC_EXTRA_CONFIG @@ -54,7 +61,7 @@ config LIBC_GLIBC_USE_PORTS The ports addon contains some architecture ports that are not available in the official distribution. - For example, this is the case for ARM with for 2.4 and above. + For example, this is the case for ARM with glibc-2.4 and above. Say n only if you're sure that your architecture is in the official distribution for your chosen version. |