Re: 1.7.9 gcc linking fails after cygwin update

2011-04-14 Thread Christopher Faylor
On Thu, Apr 14, 2011 at 07:38:43PM -0700, Patrick Tantalo wrote: >Hi Folks: > >After a recent update of Cygwin on XP Professional my previously >working C/C++ programs suddenly quit compiling under gcc/g++. >Actually they pass all stages of compilation except the final link >stage. This goes for t

gcc linking issues with MQSeries library

2007-09-04 Thread Henrique Seganfredo
Hello folks, I am trying to use cygwin´s gcc to compile and link a library (.dll) that is supposed to use certain funciton bundled on an IBM provided library, from the MQSeries software (messaging middleware). I am getting a very strange error, that I could not find a single hit on google.

Re: GCC linking problem

2005-01-27 Thread Brian Dessent
Base64 wrote: > I have just installed cygwin along with make,crypt, libcrypt, openssh, > openssl-devel and gcc. When compiling code that is known to work with > cygwin, the linker says it cannot find -lssh. I have googled to the > end of the results for 2 days now, and any help would be much > a

GCC linking problem

2005-01-27 Thread Base64
I have just installed cygwin along with make,crypt, libcrypt, openssh, openssl-devel and gcc. When compiling code that is known to work with cygwin, the linker says it cannot find -lssh. I have googled to the end of the results for 2 days now, and any help would be much appreciated. Here is the

Re: Cygwin GCC linking Python extensions issue

2003-05-27 Thread Jason Tishler
Dave, On Tue, May 27, 2003 at 10:45:22AM -0400, David Abrahams wrote: > Jason Tishler <[EMAIL PROTECTED]> writes: > >> boost_python.dll\gcc\debug-python\runtime-link-dynamic\boost_python.lib" > >> "c:\build\libs\ > >> > >> python\build\bin\boost_python.dll\gcc\debug-python\runtime-link-

Re: Cygwin GCC linking Python extensions issue

2003-05-27 Thread David Abrahams
Jason Tishler <[EMAIL PROTECTED]> writes: > Dave, > > On Fri, May 23, 2003 at 08:20:38AM -0400, David Abrahams wrote: >> Recently I've begun to see the following link errors when building >> some of the Boost.Python test suite extension modules using Cygwin gcc >> (version 2 or 3, doesn't matter)

Re: gcc linking

2003-01-27 Thread Max Bowsher
David Meggy wrote: > $ cat prog.c > #include > > int main() { > char ** string; > asprintf(string, "Sfsdf"); > return 0; } > > > david@DURON1000 ~ > $ gcc -O2 prog.c -o prog > > david@DURON1000 ~ > $ ./prog.exe > > > > When I run the program I get a message from MS-Windows titled > "prog.exe >

gcc linking

2003-01-27 Thread David Meggy
Hi, I've run into some difficulties with gcc/ld on the latest cygwin (downloaded friday). Below is an example. $ cat prog.c #include int main() { char ** string; asprintf(string, "Sfsdf"); return 0; } david@DURON1000 ~ $ gcc -O2 prog.c -o prog david@DURON1000 ~ $ ./prog.exe When I ru