From: Jarkko Hietaniemi Date: Wed, 23 May 2001 21:01:48 +0000 (+0000) Subject: -qlongdouble considered harmful by Merijn. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=cb19cdb0fd3ce67876c25a91eb9a0f13a6646713;p=p5sagit%2Fp5-mst-13.2.git -qlongdouble considered harmful by Merijn. p4raw-id: //depot/perl@10177 --- diff --git a/hints/aix.sh b/hints/aix.sh index 2f19f1c..c374131 100644 --- a/hints/aix.sh +++ b/hints/aix.sh @@ -430,13 +430,9 @@ cat > UU/uselongdouble.cbu <<'EOCBU' # after it has prompted the user for whether to use long doubles. case "$uselongdouble" in $define|true|[yY]*) - case "$cc" in - *gcc*) ;; - *) ccflags="$ccflags -qlongdouble" ;; - esac - # The explicit cc128, xlc128, xlC128 are not needed, - # the -qlongdouble should do the trick. --jhi - d_Gconvert='sprintf((b),"%.*llg",(n),(x))' + # -qlongdouble for cc taken out on 20010522 cause it + # causes more trouble than it does any good --hmb + d_Gconvert='sprintf((b),"%.*llg",((int)(n)),(x))' ;; esac EOCBU