mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
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>
This commit is contained in:
parent
8b0fb989fc
commit
2b912ba840
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user