diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-10-20 15:25:38 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-10-20 15:25:38 +0200 |
commit | 2b912ba84058489780c6fb673c894860bc9147af (patch) | |
tree | 3a4f78cba184a939dbee4c8f41c7fcc5c44bf93b | |
parent | 8b0fb989fca547e5118e1a721b1efde8d1dd1ba0 (diff) | |
download | crosstool-ng-2b912ba84058489780c6fb673c894860bc9147af.tar.gz crosstool-ng-2b912ba84058489780c6fb673c894860bc9147af.tar.bz2 crosstool-ng-2b912ba84058489780c6fb673c894860bc9147af.zip |
cc/gcc: fix 128-bit long doubles option
Spotted by Arnaud LACOMBE:
http://sourceware.org/ml/crossgcc/2010-10/msg00122.html
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
-rw-r--r-- | scripts/build/cc/gcc.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh index db91f869..2dffb357 100644 --- a/scripts/build/cc/gcc.sh +++ b/scripts/build/cc/gcc.sh @@ -192,8 +192,8 @@ do_cc_core() { fi case "${CT_CC_GCC_LDBL_128}" in - Y) extra_config+=("--with-long-double-128");; - M) ;; + y) extra_config+=("--with-long-double-128");; + m) ;; "") extra_config+=("--without-long-double-128");; esac @@ -438,8 +438,8 @@ do_cc() { fi case "${CT_CC_GCC_LDBL_128}" in - Y) extra_config+=("--with-long-double-128");; - M) ;; + y) extra_config+=("--with-long-double-128");; + m) ;; "") extra_config+=("--without-long-double-128");; esac |