diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-21 22:51:39 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-10-21 22:51:39 +0200 |
commit | 68b9b30f6bdcfab194408b06a3fcbc6363fb7ede (patch) | |
tree | 9b285dc55c10bf807eb8e9ac33626c95b8ff8c7b /scripts/functions | |
parent | f5cfdc13690648af79d48d5be4f851877c353886 (diff) | |
download | crosstool-ng-68b9b30f6bdcfab194408b06a3fcbc6363fb7ede.tar.gz crosstool-ng-68b9b30f6bdcfab194408b06a3fcbc6363fb7ede.tar.bz2 crosstool-ng-68b9b30f6bdcfab194408b06a3fcbc6363fb7ede.zip |
libc/newlib: allow using newlib with archs other than avr32
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions index bbafeefe..f6cbdf17 100644 --- a/scripts/functions +++ b/scripts/functions @@ -696,9 +696,9 @@ CT_DoBuildTargetTuple() { # Set defaults for the system part of the tuple. Can be overriden # by architecture-specific values. case "${CT_LIBC}" in - none) CT_TARGET_SYS=elf;; *glibc) CT_TARGET_SYS=gnu;; uClibc) CT_TARGET_SYS=uclibc;; + *) CT_TARGET_SYS=elf;; esac # Transform the ARCH into a kernel-understandable ARCH |