in reply to OpenMPI and Perl
> strings /usr/local/lib/perl/5.10.0/auto/Parallel/MPI/Simple/Simple.s +o | grep mpi (...) ompi_mpi_char
This just shows that the symbol appears in Simple.so, but it doesn't tell if that occurrence is the implementation (i.e. the instance of a variable, code of a function, etc.) of the symbol, or just a reference to an external implementation, which it very likely is in that particular case...
Use objdump -tT, or nm on the other libs and look for the type of the symbol ("*UND*" means it's an undefined/external reference) to find out more. Presumably the symbol should be in defined/implemented in libmpich-p4mpd.so.1.0.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: OpenMPI and Perl
by spadacciniweb (Curate) on Nov 19, 2009 at 13:07 UTC | |
by almut (Canon) on Nov 19, 2009 at 14:32 UTC | |
by spadacciniweb (Curate) on Nov 19, 2009 at 15:22 UTC |