Mirror Listing

2020-10-27 Thread Lo Fi via Cygwin
I would like to be added to the mirror list, information below. URL: https://mirror.steadfast.net/cygwin/ Location: Illinois -- Problem reports: https://cygwin.com/problems.html FAQ: https://cygwin.com/faq/ Documentation:https://cygwin.com/docs.html Unsubscribe info:

[ANNOUNCEMENT] Updated: openldap-2.4.55-1

2020-10-27 Thread Achim Gratz
The openldap package in Cygwin has been updated to the latest upstream version 2.4.55. https://www.openldap.org/software/release/changes.html Notes = I don't use the server components of openldap myself and know next to nothing about these, so use them with due care. The test results ar

Re: sqrtl behavior inconsistent with sqrt and sqrtf

2020-10-27 Thread Ken Brown via Cygwin
On 10/27/2020 7:17 AM, airplanemath via Cygwin wrote: Compiling and running the attached program with the command line below produces the output below: $ gcc -O0 -Og test_sqrt.c -o test_sqrt && ./test_sqrt Long double: -inf -inf Double: -inf -nan Float: -inf -nan I suspect the beha

Re: sqrtl behavior inconsistent with sqrt and sqrtf

2020-10-27 Thread airplanemath via Cygwin
airplanemath via Cygwin writes: > Compiling and running the attached program with the command line below > produces the output below: > > $ gcc -O0 -Og test_sqrt.c -o test_sqrt && ./test_sqrt > Long double: -inf -inf > Double: -inf -nan > Float: -inf -nan > > I suspect the behavior for

sqrtl behavior inconsistent with sqrt and sqrtf

2020-10-27 Thread airplanemath via Cygwin
Compiling and running the attached program with the command line below produces the output below: #include #include int main() { long double a, b; double c, d; float f, g; a = (long double) -INFINITY; c = (double) -INFINITY; f = (float) -INFINITY; b = sqrtl(a); d = sqrt(c); g =

Re: Interaction with non-cygwin programs

2020-10-27 Thread Takashi Yano via Cygwin
On Mon, 26 Oct 2020 10:56:14 +0100 Federico Kircheis wrote: > On 26/10/2020 09.58, Takashi Yano wrote: > > On Mon, 26 Oct 2020 07:05:30 +0100 > > Federico Kircheis wrote: > >> On 25/10/2020 11.12, Takashi Yano wrote: > >>> On Sat, 24 Oct 2020 17:04:59 +0200 > >>> Federico Kircheis via Cygwin wrote