G++ troubles in Woody
I have a few Woody installations, and on "one", when I
try to compile anything with the g++ compiler, I get
the following:
g++ test.cpp
/lib/ld-linux.so.2(*IND*+0x0): multiple definition of
`__xstat64'
/lib/ld-linux.so.2(.text+0xc810): first defined here
/lib/ld-linux.so.2(*IND*+0x0): multiple definition of
`__fxstat64'
/lib/ld-linux.so.2(.text+0xc9b0): first defined here
/usr/bin/ld: BFD 2.12.90.0.1 20020307 Debian/GNU Linux
assertion fail ../../bfd/elf-strtab.c:262
I can't figure out what this one system does this, or
what I can do to fix it. The test program is simple,
and as follows:
#include <iostream.h>
#include <iomanip.h>
#include <stdio.h>
#include <math.h>
#include <stdlib.h>
class point{
public:
int x;
int y;
};
class circle : public point {
public:
int radius;
circle(int ix, int iy, int ir){
x = ix;
y = iy;
radius = ir;
}
};
__________________________________
Do you Yahoo!?
SBC Yahoo! DSL - Now only $29.95 per month!
http://sbc.yahoo.com
Reply to: