I get the following message when I try to compile anything with g++ :
ld: elf error: a.out: elf_update: Request error: update() ELF_C_...
I recently installed gcc-2.8.1 and libstdc++-2.8.1.
When I try to compile a program with gcc I get:
ld: elf error: a.out: elf_update: Request error: update() ELF_C_...
As well.
This happen with any user.
The sample programs are as follows:
c++
#include <iostream.h>
void main()
{
cout<<"Hello!\n";
CQuote:}
#include <stdio.h>
int main()
{
int a=6, b=7, c;
c=a+b;
printf("Adding %d to %d equals %d\n\n",a,b,c);
return 0;
Any suggestions on how I could get my compilers to start working again.Quote:}
Thanks