Re: cygwin 2.4.1: broken ps_AF and ps_AF.utf8 locales

2016-02-02 Thread Tony Cook
Achim Gratz said: > You've been digging at the Perl locale test fails? More that Karl Williamson was, I just turned it into a report. Tony -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html

Re: Defining _GNU_SOURCE hides the declaration of aligned_alloc

2016-02-02 Thread Ken Brown
On 2/2/2016 5:27 PM, Ken Brown wrote: The issue in the Subject line came up in connection with an emacs bug report. Here's a test case: $ cat test.c #define _GNU_SOURCE #include int main () { aligned_alloc (1, 1); } $ gcc test.c -Wimplicit-function-declaration test.c: In function ‘main’:

Defining _GNU_SOURCE hides the declaration of aligned_alloc

2016-02-02 Thread Ken Brown
The issue in the Subject line came up in connection with an emacs bug report. Here's a test case: $ cat test.c #define _GNU_SOURCE #include int main () { aligned_alloc (1, 1); } $ gcc test.c -Wimplicit-function-declaration test.c: In function ‘main’: test.c:7:3: warning: implicit

Re: less.exe v481-1 cannot seek to EOF in CRLF file; current cygwin32, Win10 only.

2016-02-02 Thread KARL BOTTS
This is to close out my earlier bug report. I think it contains a useful caveat for others. I have a very old cygwin installation, which I propagate by updating it on one machine via setup.exe, and then copying the whole c:/cygwin tree to several other machines, with tar or rsync. I have not

RE: Compiling gcc trunk under cygwin

2016-02-02 Thread Roger Orr
FYI Fixes for both issues now released to gcc trunk. Roger. -Original Message- From: Roger Orr [mailto:rog...@howzatt.demon.co.uk] Sent: 27 January 2016 00:16 To: 'cygwin@cygwin.com' Subject: RE: Compiling gcc trunk under cygwin FYI (1) Revision 232071 problem The pr66655 has a new

Re: cygwin 2.4.1: broken ps_AF and ps_AF.utf8 locales

2016-02-02 Thread Achim Gratz
Tony Cook develop-help.com> writes: > Simplified to a C program below, calls to sprintf() under the ps_AF > and ps_AF.utf8 locales are returning a value that doesn't match the > length of the formatted string: You've been digging at the Perl locale test fails? :-) Regards, Achim. -- Problem

Re: Fork and crashing problems

2016-02-02 Thread James Darnley
On 2016-02-02 15:53, Achim Gratz wrote: > James Darnley gmail.com> writes: >>> 0 [main] sh 10684 fork: child -1 - forked process 7812 died > unexpectedly, retry 0, exit code 0xC005, >> errno 11 > > Well, that exit code is ACCESS_VIOLATION... if you are sure it's not BLODA > related and it

Re: Fork and crashing problems

2016-02-02 Thread Achim Gratz
James Darnley gmail.com> writes: > > Well, that exit code is ACCESS_VIOLATION... if you are sure it's not BLODA > > related and it fails only intermittently and always with a different > > program, I'd run a memory test. > > Do you mean something like Memtest86? Yes, or maybe your BIOS has a

Fork and crashing problems

2016-02-02 Thread James Darnley
Hello. I know that fork issues are usually related to the BLODA programs. I don't think I have any installed. At least I couldn't find any of the listed programs in Windows' remove programs dialog. However I still get intermittent crashes when running things like make or configure scripts.

Re: Fork and crashing problems

2016-02-02 Thread Achim Gratz
James Darnley gmail.com> writes: > > 0 [main] sh 10684 fork: child -1 - forked process 7812 died unexpectedly, retry 0, exit code 0xC005, > errno 11 Well, that exit code is ACCESS_VIOLATION... if you are sure it's not BLODA related and it fails only intermittently and always with a different

Tmux man page not up to date

2016-02-02 Thread Byron Boulton
The man page for tmux in Cygwin is not up to date. The version of tmux in cygwin is 2.1, but the man page is not consistent with that. Specifically I noticed it because I was getting warnings about my mouse configurations settings. There was a breaking change to this for tmux 2.1 as noted in the

RE: Python stackdump on "succesful" exit after import of python-requests

2016-02-02 Thread Maarten Jacobs
Hi Robert, My experience with Python is very, very limited. The only reason I am looking into this issue is because one of the packages I want to install won't work because of this :) Therefore, if you could send me a sample Python script that causes the problem on your end, I'd be more than

Tmux man page not up to date

2016-02-02 Thread Byron Boulton
The man page for tmux in Cygwin is not up to date. The version of tmux in cygwin is 2.1, but the man page is not consistent with that. Specifically I noticed it because I was getting warnings about my mouse configurations settings. There was a breaking change to this for tmux 2.1 as noted in

Re: Defining _GNU_SOURCE hides the declaration of aligned_alloc

2016-02-02 Thread Yaakov Selkowitz
On 2016-02-02 16:27, Ken Brown wrote: The issue in the Subject line came up in connection with an emacs bug report. Here's a test case: [snip] $ gcc test.c -Wimplicit-function-declaration test.c: In function ‘main’: test.c:7:3: warning: implicit declaration of function ‘aligned_alloc’ The