| delorie.com/archives/browse.cgi | search |
| X-Recipient: | archive-cygwin AT delorie DOT com |
| DomainKey-Signature: | a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id |
| :list-unsubscribe:list-subscribe:list-archive:list-post | |
| :list-help:sender:date:from:to:subject:message-id:reply-to | |
| :references:mime-version:content-type:in-reply-to; q=dns; s= | |
| default; b=p8BZiijkq02yHg5iRZia+/eCZfDcWuGuvzmbiBVll9GBbpbwvUknp | |
| WiZM5A5a2r/aTBNgxPdY9JKL+99L6mAaWr/MZlXoV75QQt6DDaUfMSlkeyfOP6xC | |
| whIsjxV8jd6KLsiGGKAFjvd18yaLpMUN4W7HZ+ZmXU1t+1w9V1rWd8= | |
| DKIM-Signature: | v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id |
| :list-unsubscribe:list-subscribe:list-archive:list-post | |
| :list-help:sender:date:from:to:subject:message-id:reply-to | |
| :references:mime-version:content-type:in-reply-to; s=default; | |
| bh=jyYNOQl0Oo+nh2b38RO0vuGl5mE=; b=cR1ikDINVirdzr4Wuq4pGrB9EVDS | |
| MLwOSLby6xagwvnxB/zHk9d8nvFWfD0ZIVYkiRoaBXLp0gl/IVdiMgr07TYuX+AS | |
| 5pzYn9GPVL/AzOFxdz47Zol/muKcdS0og0edbPzAWqV8W9zemr+gr9H6AkCMhnq4 | |
| 44FbYKv1QgGmd3Q= | |
| Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
| List-Id: | <cygwin.cygwin.com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
| List-Archive: | <http://sourceware.org/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT cygwin DOT com> |
| List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
| Sender: | cygwin-owner AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| Delivered-To: | mailing list cygwin AT cygwin DOT com |
| Authentication-Results: | sourceware.org; auth=none |
| X-Spam-SWARE-Status: | No, score=-100.8 required=5.0 tests=AWL,BAYES_00,GOOD_FROM_CORINNA_CYGWIN,KAM_LAZY_DOMAIN_SECURITY,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.2 spammy=stupid, packaging, Hx-languages-length:1756 |
| X-HELO: | mout.kundenserver.de |
| Date: | Mon, 13 Aug 2018 10:23:27 +0200 |
| From: | Corinna Vinschen <corinna-cygwin AT cygwin DOT com> |
| To: | cygwin AT cygwin DOT com |
| Subject: | Re: [ANNOUNCEMENT] TEST RELEASE: Cygwin 2.11.0-0.1 |
| Message-ID: | <20180813082327.GI3747@calimero.vinschen.de> |
| Reply-To: | cygwin AT cygwin DOT com |
| Mail-Followup-To: | cygwin AT cygwin DOT com |
| References: | <announce DOT 20180809202604 DOT GN4180 AT calimero DOT vinschen DOT de> <cc1d684fabcfe5e581ec82aae1617471 AT smtp-cloud8 DOT xs4all DOT net> <20180810114254 DOT GA25560 AT calimero DOT vinschen DOT de> <57b3092a9b5027be5f14e59c305200bc AT smtp-cloud8 DOT xs4all DOT net> <bc84dddb0c5933a964ac695d3bb6fee3 AT xs4all DOT nl> |
| MIME-Version: | 1.0 |
| In-Reply-To: | <bc84dddb0c5933a964ac695d3bb6fee3@xs4all.nl> |
| User-Agent: | Mutt/1.9.2 (2017-12-15) |
| Note-from-DJ: | This may be spam |
--6lXr1rPCNTf1w0X8
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
On Aug 13 10:03, Houder wrote:
> On 2018-08-10 14:43, Houder wrote:
> > On Fri, 10 Aug 2018 13:42:54, Corinna Vinschen wrote:
> > [snip]
> >=20
> > > > Note: the following line must be changed in STC-FENV.c (the STC tha=
t was
> > > > attached to the bug report -- the last one above).
> > > >
> > > > from:
> > > > const int xxx =3D3D 0x3d; // FE_ALL_EXCEPT on Linux, i.e. the denor=
mal-...
> > > > // exception is excluded on Linux
> > > >
> > > > to:
> > > > const int xxx =3D3D 0x3f; // Cygwin allows the denormal-operand exc=
eption;
> > > > // Linux (Andreas Jaeger) does not.
> > > > // This exception is not defined by the IEE=
E 754
> > > > // standard (Floating-Point Arithmetic)
> > >=20
> > > Shall we change that? A patch would be nice. ;)
> >=20
> > That is possible ...
> >=20
> > As on Linux, the denormal-operand exception will always be masked after
> > this
> > change ... (both in the default env. and in the "nomask" env.)
> >=20
> > Meaning that, after this change, this exception can * no longer * be
> > enabled
> > through the API of fenv.h
> >=20
> > Objections? Anyone?
> >=20
> > The modication would require changing:
> >=20
> > winsup/cygwin/fenv.cc (_feinitialise() )
> > winsup/cygwin/include/fenv.h (FE_ALL_EXCEPT)
> >=20
> > /usr/include/fenv.h (which is a copy of the above, I am guessing ?????)
>=20
> Stupid question:
>=20
> Does the modification of winsup/cygwin/include/fenv.h "automatically"
> propogate
> to /usr/include/fenv.h
Yes, `make install' copies the files where they belong, just usually
not to /usr/include/fenv.h but to ${INSTALL_DIR}/usr/include/fenv.h
for later packaging.
Corinna
--=20
Corinna Vinschen Please, send mails regarding Cygwin to
Cygwin Maintainer cygwin AT cygwin DOT com
Red Hat
--6lXr1rPCNTf1w0X8
Content-Type: application/pgp-signature; name="signature.asc"
-----BEGIN PGP SIGNATURE-----
iQIzBAEBCAAdFiEEoVYPmneWZnwT6kwF9TYGna5ET6AFAltxP/8ACgkQ9TYGna5E
T6DVXBAAnHcMvo6ETSAS/qO5La4ueCRGHLJXP5FFfrtd4feBCc7INoVE5iBZJwK4
o3r7hzaoqs1gvXtF/tGPtm8CLCGGulX96ZR0A94eBhDX1EgftsnSn60lJd55+mPm
FdpYM/0SNkHmTG7ZCoyK+3s0miNqY65nPqCJzVOTDFW8k/NNbXAYvnD8OZkeaqcV
iIISDJycsL3bYGz0N//a9XIsRJD/0y5a/U787yKS7r0DmGFJUO86MqVcRLfIZThZ
YV555XP52sNhokQWFLjyzdR2e1ORUdO+rvI/0equAoPWnMPP9HueeGeiUuvaX4Yr
aBevudXBKNkwAvixYZllexGR/mXvcDOQYZkEa8G9JjPKpoTZvL0MSJPee9ctYLc1
6Z9AVecFRYQJ2rWpTQz42R28G1PV8lfkmZrY7goW1F4vephi0JU9AbQumZqECGLe
HASUAS5qIhaM2RArW4qrWaEC4IjZ5n8VupQKXDjdk4Dy4ayDNm+Ayqr9LnW2PoP4
v+ADvVop6pB/QJzCpqT83Nxiwj1dH3D1TbN9UOrEvz7C6uySTuFibSgL10RUlWZv
nRuiyYZLcn0L21PLWT7k0u+EPTR7ZSag6p73BNFTH5UHncuo9OJwJbcNXsom1d1R
AOOPAs8OO/ejd4AXDQAeGphQro1gBa2UR5rrwvYulOcoz1irgu8=
=SZuF
-----END PGP SIGNATURE-----
--6lXr1rPCNTf1w0X8--
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |