Re: undefined references compiling gcc with ncurses

2005-10-25 Thread Gerrit P. Haase
Jeff Scudder wrote: Greetings, I am a curses newbie and having trouble running a simple curses program. I haven't run into a discussion thus far on the specific problem I'm having and I imagine there is a simple solution. My program is named ctest.c and is as follows: #include #include int mai

Re: undefined references compiling gcc with ncurses

2005-10-25 Thread René Berber
Jeff Scudder wrote: > I am a curses newbie and having trouble running a simple curses > program. I haven't run into a discussion thus far on the specific > problem I'm having and I imagine there is a simple solution. My > program is named ctest.c and is as follows: > > > #include > #include > >

Re: undefined references compiling gcc with ncurses

2005-10-25 Thread Igor Pechtchanski
On Tue, 25 Oct 2005, Jeff Scudder wrote: > Greetings, > I am a curses newbie and having trouble running a simple curses > program. I haven't run into a discussion thus far on the specific > problem I'm having and I imagine there is a simple solution. My > program is named ctest.c and is as follows

Re: undefined references compiling gcc with ncurses

2005-10-25 Thread Reid Thompson
Jeff Scudder wrote: Greetings, I am a curses newbie and having trouble running a simple curses program. I haven't run into a discussion thus far on the specific problem I'm having and I imagine there is a simple solution. My program is named ctest.c and is as follows: #include #include int ma

RE: Undefined references

2005-06-13 Thread Dave Korn
Original Message >From: Alireza Ghasemi >Sent: 13 June 2005 12:45 > Hello, > When compiling libyahoo2 everything went OK.but when I tried to compile a > program with it,I got a very very big list of undefined references like > this >> > " > /usr/lib/gcc-lib/i686-pc-cygwin/3.3.1/../../../

Re: Undefined references when compiling C++ program

2004-03-05 Thread Larry Hall
At 01:59 PM 3/5/2004, you wrote: >Hello, > >when I try to compile this... > >//zozo.cc >#include >int main() >{ > std::cout << "Salut" << std::endl; > return 0; >} > >...with... >gcc zozo.cc > >...gcc give me... >/cygdrive/c/DOCUME~1/travonz/LOCALS~1/Temp/ccuTTqP6.o(.text+0x2f):zozo.cc: undefined

Re: Undefined references when compiling C++ program

2004-03-05 Thread Peter J. Stieber
> when I try to compile this... > > //zozo.cc > #include > int main() > { > std::cout << "Salut" << std::endl; > return 0; > } > > ...with... > gcc zozo.cc Use g++ zozo.cc instead. Pete -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin

Re: Undefined References using libtool

2003-12-19 Thread Roy Clemmons
I was able to resolve this problem by linking the stdc++ library in the makefile ( -lstdc++) and changing libtool.m4. Roy -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html