On 8/14/2018 12:26 AM, Houder wrote:
On 2018-08-14 00:16, Eric Blake wrote:
On 08/13/2018 04:29 PM, Houder wrote:
The modication would require changing:
winsup/cygwin/fenv.cc (_feinitialise() )
winsup/cygwin/include/fenv.h (FE_ALL_EXCEPT)
GRRR! The file encoding of fenv.h is "cp1252" becaus
>>> On Mon, 13 Aug 2018 at 19:46, Duncan Roe wrote:
On Mon, Aug 13, 2018 at 12:52:48PM -0400, Stephen John Smoogen wrote:
> On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda
> wrote:
[...]
> On Fedora 27 with 7.3.1 it gives
> ```
> stod ("nan") = nan
> s
On Mon, 13 Aug 2018 12:02:53, Bosmon wrote:
Your posting was in the thread "[ANNOUNCEMENT] Updated:
libreadline7-7.0.1-1, libreadline-devel-7.0.1-1, bash-4.4.5-1"
and is linked here:
https://www.mail-archive.com/cygwin@cygwin.com/msg151042.html
the proper link is here:
http://cygwin.com/ml
On Tue, 14 Aug 2018 11:31:35, Masamichi Hosoda wrote:
If I understand correctly,
`std::stod ()` uses cygwin1.dll's `strtod ()` for the conversion.
`std::stod ()` is defined in
/usr/lib/gcc/x86_64-pc-cygwin/7.3.0/include/c++/bits/basic_string.h L6388-.
It calls `__gnu_cxx::__stoa ()` with pointer
>> On Mon, 13 Aug 2018 at 19:46, Duncan Roe wrote:
>>>
>>> On Mon, Aug 13, 2018 at 12:52:48PM -0400, Stephen John Smoogen wrote:
>>> > On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda
>>> > wrote:
>>> [...]
>>> > On Fedora 27 with 7.3.1 it gives
>>> > ```
>>> > stod ("nan") = nan
>>> > stod ("-nan
> On Mon, 13 Aug 2018 at 19:46, Duncan Roe wrote:
>>
>> On Mon, Aug 13, 2018 at 12:52:48PM -0400, Stephen John Smoogen wrote:
>> > On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda
>> > wrote:
>> [...]
>> > On Fedora 27 with 7.3.1 it gives
>> > ```
>> > stod ("nan") = nan
>> > stod ("-nan") = nan
>
On Mon, 13 Aug 2018 at 19:46, Duncan Roe wrote:
>
> On Mon, Aug 13, 2018 at 12:52:48PM -0400, Stephen John Smoogen wrote:
> > On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda wrote:
> [...]
> > On Fedora 27 with 7.3.1 it gives
> > ```
> > stod ("nan") = nan
> > stod ("-nan") = nan
> > quiet_NaN ()
On Mon, Aug 13, 2018 at 12:52:48PM -0400, Stephen John Smoogen wrote:
> On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda wrote:
[...]
> On Fedora 27 with 7.3.1 it gives
> ```
> stod ("nan") = nan
> stod ("-nan") = nan
> quiet_NaN () = nan
> ```
[...]
Same with Slackware 14.2 / gcc (GCC) 5.3.0
--
P
On 2018-08-14 00:16, Eric Blake wrote:
On 08/13/2018 04:29 PM, Houder wrote:
The modication would require changing:
winsup/cygwin/fenv.cc (_feinitialise() )
winsup/cygwin/include/fenv.h (FE_ALL_EXCEPT)
GRRR! The file encoding of fenv.h is "cp1252" because of 2 characters
in this
line:
On 08/13/2018 04:29 PM, Houder wrote:
The modication would require changing:
winsup/cygwin/fenv.cc (_feinitialise() )
winsup/cygwin/include/fenv.h (FE_ALL_EXCEPT)
GRRR! The file encoding of fenv.h is "cp1252" because of 2 characters in
this
line:
Intel® 64 and IA-32 Architectures Sof
On 2018-08-13 23:29, Houder wrote:
On 2018-08-10 14:43, Houder wrote:
On Fri, 10 Aug 2018 13:42:54, Corinna Vinschen wrote:
[snip]
> Note: the following line must be changed in STC-FENV.c (the STC that was
> attached to the bug report -- the last one above).
>
> from:
> const int xxx =3D 0x3d;
On 2018-08-10 14:43, Houder wrote:
On Fri, 10 Aug 2018 13:42:54, Corinna Vinschen wrote:
[snip]
> Note: the following line must be changed in STC-FENV.c (the STC that was
> attached to the bug report -- the last one above).
>
> from:
> const int xxx =3D 0x3d; // FE_ALL_EXCEPT on Linux, i.e. the
Houder writes:
> from:
> const int xxx = 0x3d; // FE_ALL_EXCEPT on Linux, i.e. the denormal-operand
> // exception is excluded on Linux
>
> to:
> const int xxx = 0x3f; // Cygwin allows the denormal-operand exception;
> // Linux (Andreas Jaeger) does not.
Your posting was in the thread "[ANNOUNCEMENT] Updated:
libreadline7-7.0.1-1, libreadline-devel-7.0.1-1, bash-4.4.5-1"
and is linked here:
https://www.mail-archive.com/cygwin@cygwin.com/msg151042.html
The problem you reported, of broken interactive non-ASCII input,
is likely unrelated but is fu
On Mon, 13 Aug 2018 at 11:16, Masamichi Hosoda wrote:
>
> Hi
>
> I've found a curious behavior about `std::stod ("nan")` on Cygwin.
> Only on Cygwin, `std::stod ("nan")` returns negative NaN.
> On Linux etc., `std::stod ("nan")` returns positive NaN.
>
> Here is a reproduction code.
>
> ```
> // g
Hi
I've found a curious behavior about `std::stod ("nan")` on Cygwin.
Only on Cygwin, `std::stod ("nan")` returns negative NaN.
On Linux etc., `std::stod ("nan")` returns positive NaN.
Here is a reproduction code.
```
// g++ -std=c++11 foobar.cc
#include
#include
#include
int main ()
{
st
On Aug 13 08:57, cyg Simple wrote:
> On 8/13/2018 3:53 AM, Corinna Vinschen wrote:
> > On Aug 12 19:53, cyg Simple wrote:
> >> The documentation for cygwin-console-helper.exe is missing, not even a
> >> --help function.
> >
> > cygwin-console-helper.exe is not for the user to use, so why add
> > u
On Aug 13 08:50, cyg Simple wrote:
> On 8/13/2018 3:49 AM, Corinna Vinschen wrote:
> > On Aug 10 11:28, cyg Simple wrote:
> >> Looking at the files delivered by the cygwin upgrade I see
> >> /usr/sbin/cygserver.exe and /usr/bin/cygserver-config. Shouldn't
> >> cygserver-config reside in /usr/sbin
On 8/13/2018 3:53 AM, Corinna Vinschen wrote:
> On Aug 12 19:53, cyg Simple wrote:
>> The documentation for cygwin-console-helper.exe is missing, not even a
>> --help function.
>
> cygwin-console-helper.exe is not for the user to use, so why add
> user docs? The documentation is in the source for
On 8/13/2018 3:49 AM, Corinna Vinschen wrote:
> On Aug 10 11:28, cyg Simple wrote:
>> Looking at the files delivered by the cygwin upgrade I see
>> /usr/sbin/cygserver.exe and /usr/bin/cygserver-config. Shouldn't
>> cygserver-config reside in /usr/sbin with cygserver.exe?
>>
You didn't answer thi
On Aug 13 12:11, Andy Moreton wrote:
> On Mon 13 Aug 2018, Corinna Vinschen wrote:
>
> > On Aug 12 19:53, cyg Simple wrote:
> >> The documentation for cygwin-console-helper.exe is missing, not even a
> >> --help function.
> >
> > cygwin-console-helper.exe is not for the user to use, so why add
> >
On Aug 13 10:35, Thomas Wolff wrote:
> Am 09.08.2018 um 22:26 schrieb Corinna Vinschen:
> > Hi folks,
> >
> >
> > I uploaded a new Cygwin test release 2.11.0-0.1
> >
> > I'm planning for a release end of August. Please test.
> >
> > =
On Mon 13 Aug 2018, Corinna Vinschen wrote:
> On Aug 12 19:53, cyg Simple wrote:
>> The documentation for cygwin-console-helper.exe is missing, not even a
>> --help function.
>
> cygwin-console-helper.exe is not for the user to use, so why add
> user docs?
It is helpful to users to have a --help
Am 09.08.2018 um 22:26 schrieb Corinna Vinschen:
Hi folks,
I uploaded a new Cygwin test release 2.11.0-0.1
I'm planning for a release end of August. Please test.
===
What's new:
---
...
What changed:
-
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]
> >
> > > > Note: the following line must be changed in STC-FENV.c (the STC that was
> > > > attached to the bug report -- the last one above).
> > > >
> > > > f
On 2018-08-10 14:43, Houder wrote:
On Fri, 10 Aug 2018 13:42:54, Corinna Vinschen wrote:
[snip]
> Note: the following line must be changed in STC-FENV.c (the STC that was
> attached to the bug report -- the last one above).
>
> from:
> const int xxx =3D 0x3d; // FE_ALL_EXCEPT on Linux, i.e. the
On Aug 12 19:53, cyg Simple wrote:
> The documentation for cygwin-console-helper.exe is missing, not even a
> --help function.
cygwin-console-helper.exe is not for the user to use, so why add
user docs? The documentation is in the source for the interested
dev:
https://sourceware.org/git/?p=newl
On Aug 10 11:28, cyg Simple wrote:
> Looking at the files delivered by the cygwin upgrade I see
> /usr/sbin/cygserver.exe and /usr/bin/cygserver-config. Shouldn't
> cygserver-config reside in /usr/sbin with cygserver.exe?
>
> Also in that vain shouldn't cyglsa belong in /usr/sbin?
Nope. /usr/bi
On Aug 10 18:00, Marco Atzeri wrote:
> Am 09.08.2018 um 22:26 schrieb Corinna Vinschen:
> > Hi folks,
> >
> >
> > I uploaded a new Cygwin test release 2.11.0-0.1
> > [...]
>
> testing libuv, I see a large number of new failures
STC?
Corinna
--
Corinna Vinschen Please, send
On Aug 10 14:43, Houder wrote:
> On Fri, 10 Aug 2018 13:42:54, Corinna Vinschen wrote:
> [snip]
>
> > > Note: the following line must be changed in STC-FENV.c (the STC that was
> > > attached to the bug report -- the last one above).
> > >
> > > from:
> > > const int xxx =3D 0x3d; // FE_ALL_EXCEPT
30 matches
Mail list logo