summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-10-20 13:25:38 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2010-10-20 13:25:38 (GMT)
commit2b912ba84058489780c6fb673c894860bc9147af (patch)
tree3a4f78cba184a939dbee4c8f41c7fcc5c44bf93b
parent8b0fb989fca547e5118e1a721b1efde8d1dd1ba0 (diff)
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.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/build/cc/gcc.sh b/scripts/build/cc/gcc.sh
index db91f86..2dffb35 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