This is the mail archive of the gdb@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

FW: fatal: libstdc++.so.6: open failed


I'm running:

GCC 3.4.3 ??????? (Solaris, compiled in 64-bit)
GDB 6.3? ????????? (Solaris, compiled in 64-bit)

I compile a simple C program:

#include <stdio.h>

int main(void)
{
??????? int a=77;
??????? printf("long size=%d, a=%d\n",sizeof(long),a);
??????? return 0;
}

In both 32-bit and 64-bit, with gcc and g++.? They execute fine on the command line.? Although when the g++ compiled files are run in GDB, I get the following message:

$ g++ -g -m32 longsize.c -olongsize32cpp
$ gdb longsize32cpp
GNU gdb 6.3
Copyright 2004 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.? Type "show warranty" for details.
This GDB was configured as "sparc-sun-solaris2.8"...
(gdb) r
Starting program: /tmp/longsize32cpp 
ld.so.1: /tmp/longsize32cpp: fatal: libstdc++.so.6: open failed: No such file or directory

Program terminated with signal SIGKILL, Killed.
The program no longer exists.

libstdc++.so.6 is in the LD_LIBRARY_PATH.


Any assistance would be great!? Thanks!



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]