On Mon, Jul 16, 2001 at 10:38:32PM -0700, Andrew Cupino wrote:
> Sorry about the slow reply, was on a short vacation.
> 
> There was an inquiry about libstdc, now, I'm not too knowledgeable, but "locate 
>libstdc" returned:
> 
> /usr/lib/libstdc++-3-libc6.1-2-2.10.0.so
> /usr/lib/libstdc++-libc6.1-2.so.3
> /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.3/libstdc++.a
> /usr/local/lib/libstdc++.a.2.10.0
> /usr/local/lib/libstdc++.la
> /usr/local/lib/libstdc++.so
> /usr/local/lib/libstdc++.so.3
> /usr/local/lib/libstdc++.so.3.0.0
> 
> As for g++ -v & gcc -v, here's what I got:
> 
> Reading specs from /usr/local/lib/gcc-lib/i686-pc-linux-gnu/2.95.3/specs
> gcc version 2.95.3 20010315 (release)
> 
> Anyway, ran a cvs update again, the make error looks the same to me, included it 
>anyway.
> 

I would say that compiler is not linking stdc++ by default - 
you are probably unable to build even the simpliest program in c++
like: 

#include <iostream>
int main(int argc, char* argv[])
{ cout << "Hello World" << endl ; return 0; }

do you ?

I think your compiler is either wrongly installed or it is not using some
correct specs - not sure - you should probably try to reinstall 
whole gcc and than make sure the short program above works.

You may also try to add -lstdc  on the command line - however this is very
non-standard behaviour.


-- 
         Debian GNU/Linux maintainer - www.debian.{org,cz}
 Zdenek Kabelac  http://i.am/kabi/ kabi@{i.am, debian.org, fi.muni.cz}
          Resistance is futile. You all will be packaged

_______________________________________________
Avifile mailing list
[EMAIL PROTECTED]
http://prak.org/mailman/listinfo/avifile

Reply via email to