|
From: Angel T. <fn...@fm...> - 2006-03-02 19:34:50
|
> Is your app dynamically linked (it needs to be)? And if you try to run valgrind on something like "ls -l"?
First, I get the same resutls with "ls -l" as I do with "ls" alone.
Second, I get a SIGSEGV (segmentation fault) even with the simplest C++ program:
int main( )
{
}
In my first post I can see that Valgrind says:
object doesn't have a dynamic symbol table
What does this mean and could it be the cause of the segmentation fault?
|