> "error while loading shared libraries: libstdc++.so.6 : cannot open
> shared object file: No such file or directory"
This sounds like a compiler problem, not a SimPoint problem. Can you
successfully compile and run the following "hello world" C++ program?
//////////////////////////////////////////////////////////////////////
#include <iostream>
using std::cout;
int main() {
cout << "hi\n";
return 0;
}
//////////////////////////////////////////////////////////////////////
If not, consult your system administrator. :) You may need to set
LD_LIBRARY_PATH
If so, verify that the same compiler is used to build "hello world"
and SimPoint.
-jeremy