That's definitely a not finding the standard library issue.
Unfortunately, I'm not enough of a linux expert to fix your issue
without getting more detail.

It's been a while since the last time I had to track down an issue like
that on linux.  I'd recommend checking which standard library it should
be linking to and ensuring that the path is in your LIB environment
variable.

If that stuff already looks good, try specifying the final g++ command
manually and add -L and -l options to match what you expect it to do.
-L specifies a directory to look in and -l specifies a library to look
for.  -l will automatically add lib in front of what you specify.  I
believe that an error with -l will cause gcc to abort.


On Sun, 2007-10-21 at 15:11 -0400, Chris Fant wrote:
> Thanks.  I'm getting this when I compile.  Is gcc having a problem
> finding the standard library?  Any idea what I need to do to fix it?
> BTW, I'm no Linux expert.
> 
> # make
> basic_go_types.cpp: In constructor 'player_t::player_t()':
> basic_go_types.cpp:76: warning: converting negative value
> '-0x000000001' to 'uint'
> board.cpp: At global scope:
> board.cpp:472: warning: 'flatten' attribute directive ignored
> uct.cpp:335: warning: 'flatten' attribute directive ignored
> /tmp/cceBZbqE.o(.text+0x5e): In function
> `getc_non_space(std::basic_istream<char, std::char_traits<char> >&)':
> main.cpp: undefined reference to `std::basic_istream<char,
> std::char_traits<char> >::get(char&)'
> 
> 
> 
> On 10/21/07, Urban Hafner <[EMAIL PROTECTED]> wrote:
> >
> > On Oct 21, 2007, at 00:50 , Chris Fant wrote:
> >
> > > Lukasz's Libego site is not working (http://www.mimuw.edu.pl/~lew/
> > > hg/libego/).
> > >
> > > Does anyone know the link directly to the latest release?
> >
> > I have a local copy of (what I think is) the latest release. You can
> > download it from http://darcs.bettong.net/erlygo/lib/
> >
> > Urban
> >
> >
> > _______________________________________________
> > computer-go mailing list
> > computer-go@computer-go.org
> > http://www.computer-go.org/mailman/listinfo/computer-go/
> >
> >
> _______________________________________________
> computer-go mailing list
> computer-go@computer-go.org
> http://www.computer-go.org/mailman/listinfo/computer-go/

_______________________________________________
computer-go mailing list
computer-go@computer-go.org
http://www.computer-go.org/mailman/listinfo/computer-go/

Reply via email to