Re: Autotools support group, forum, mailing list, ???

2016-09-23 Thread Alberto Luaces
HiTech HiTouch writes: > PPS: The Autotools anchor, > https://www.gnu.org/software/autoconf/autoconf.html, has a bad pointer > to its mailing list archive. Letting google do the work, there is > nothing in that last several years for XP, Windows, or win32 save for > spam. Something is weird here

Re: Wish/tcltk & DISPLAY is not set

2009-09-29 Thread Alberto Luaces
Do you have the X server running? Alberto -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple

Re: Build Cygwin packages

2009-08-20 Thread Alberto Luaces
Hi Bruno, > 2009/8/18 Alberto Luaces > > El Lunes 17 Agosto 2009ES 12:33:02 Bruno Galindro da Costa escribió: > > >     How can I build Cygwin packages? > > > > Do you need to use some software with Cygwin, want to include some > > software in the Cygwin d

Re: Build Cygwin packages

2009-08-18 Thread Alberto Luaces
Hi Bruno, El Lunes 17 Agosto 2009ES 12:33:02 Bruno Galindro da Costa escribió: >     How can I build Cygwin packages? Do you need to use some software with Cygwin, want to include some software in the Cygwin distribution or anything else? Alberto -- Problem reports: http://cygwin.com/pro

Re: GraphicsMagick: gm does nothing, always exits with status 53 - cygcheck-svr.out (1/1)

2008-03-06 Thread Alberto Luaces
El Thursday 06 March 2008 17:39:25 Andrew Schulman escribió: > > I tried recently to do the same as you did, and to give my cygcheck.out > > uuencoded. > > Well I didn't exactly try to uuencode it-- what I did was to attach it to a > message and post it through Gmane. I'd forgotten that that doesn

Re: Using msvcrt.lib from cygwin gcc

2008-02-01 Thread Alberto Luaces
El Friday 01 February 2008 13:04:02 Anik Pal escribió: > What will be the make file syntax to use msvcrt.lib to compile my source > code in cygwin gcc? I think you have to add the flag -mno-cygwin to your compiler command line. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Pr

Re: Help with Make

2008-02-01 Thread Alberto Luaces
El Friday 01 February 2008 13:11:53 Richard Head escribió: > > Are you running make from Cygwin's shell or from the Windows command line > > shell instead? > > Windows Command Line. > > Ive just tried it in the Cygwin shell and I get the same first error. The > 2nd has gone away (It can find gcc no

Re: Help with Make

2008-02-01 Thread Alberto Luaces
El Friday 01 February 2008 12:38:30 Richard Head escribió: > Hi, first post in here. > > Im not a very experienced C programmer, and Im fiddling with make. I > have the following make file (entitled Makefile): > > fusionTK.exe : main.o fusionFileIO.o fusionAlgorithms.o >         gcc main.o fusionFi

Re: 1.5.24-2: unalbe to get a core Dump file

2007-12-05 Thread Alberto Luaces
El Wednesday 05 December 2007 16:33:55 Corinna Vinschen escribió: > > > > >> I'm quite new on cygwin I'm trying to get a core dump for debug > > > > >> purpose without success. > > > > > > > > > > I think currently it is not possible to get the core file. > > > > > > > > Actually, you can.  See: >

Re: 1.5.24-2: unalbe to get a core Dump file

2007-12-05 Thread Alberto Luaces
El Wednesday 05 December 2007 15:39:34 Alberto Luaces escribió: > > >> I'm quite new on cygwin I'm trying to get a core dump for debug > > >> purpose without success. > > > > > > I think currently it is not possible to get the core file. > &g

Re: 1.5.24-2: unalbe to get a core Dump file

2007-12-05 Thread Alberto Luaces
El Wednesday 05 December 2007 14:11:42 Larry Hall (Cygwin) escribió: > >> I'm quite new on cygwin I'm trying to get a core dump for debug purpose > >> without success. > > > > I think currently it is not possible to get the core file. > > Actually, you can.  See: > >

Re: 1.5.24-2: unalbe to get a core Dump file

2007-12-05 Thread Alberto Luaces
El Wednesday 05 December 2007 11:48:33 Massimo Carboni escribió: > Hi there, > > I'm quite new on cygwin I'm trying to get a core dump for debug purpose > without success. I think currently it is not possible to get the core file. However, you can set the debugger to attach to the process when it

Re: can't read sequential files

2007-10-31 Thread Alberto Luaces
Maybe unrelated, but: shouldn't this > fp = fopen ("phi.txt","r"); be fp = fopen ("phi.txt","rt"); ? -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ:

Re: Debugging with cygwin tools

2007-10-08 Thread Alberto Luaces
El Monday 08 October 2007 15:08:25 Greg Chicares escribió: > I believe the MinGW gdb repository == the Cygwin repository: >   http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/?cvsroot=src > > However, you seek a patch that apparently hasn't been applied yet. > The "bugs" tracker cited above con

Re: Debugging with cygwin tools

2007-10-08 Thread Alberto Luaces
El Friday 05 October 2007 22:30:02 René Berber escribió: > Doug Coleman wrote: > > Here is 'info files' in gdb. There have been other posts about the same > > problem, but no resolution afaik: > > http://cygwin.com/ml/cygwin/2007-03/msg00182.html [snip] > > My only guess, by the 0x77d41000 address

RE: Debugging with cygwin tools

2007-10-04 Thread Alberto Luaces Fernández
Dave Korn <[EMAIL PROTECTED]>: On 04 October 2007 16:15, René Berber wrote: Alberto Luaces wrote: I am just starting to learn how to use the debugging tools available in Cygwin. To do so, I have a test program deliberately designed to crash: [snip] I have compiled it with deb

Debugging with cygwin tools

2007-10-04 Thread Alberto Luaces
Hello, I am just starting to learn how to use the debugging tools available in Cygwin. To do so, I have a test program deliberately designed to crash: #include int main() { int *p=0; *p=9; return 0; } I have compiled it with debugging information: g++ -g -O0 -o core