https://bugzilla.novell.com/show_bug.cgi?id=742753 https://bugzilla.novell.com/show_bug.cgi?id=742753#c3 Jan Engelhardt <jengelh@medozas.de> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|REOPENED |NEEDINFO InfoProvider| |w.keegstra@rug.nl --- Comment #3 from Jan Engelhardt <jengelh@medozas.de> 2012-03-10 07:49:59 UTC --- Wilko, can you clarify your steps? I seem to be having no issue: $ cat hw.c #include <stdio.h> #include <mpi.h> int main(int argc, char *argv[]) { int numprocs, rank, namelen; char processor_name[MPI_MAX_PROCESSOR_NAME]; MPI_Init(&argc, &argv); MPI_Comm_size(MPI_COMM_WORLD, &numprocs); MPI_Comm_rank(MPI_COMM_WORLD, &rank); MPI_Get_processor_name(processor_name, &namelen); printf("Process %d on %s out of %d\n", rank, processor_name, numprocs); MPI_Finalize(); } $ /usr/lib64/mpi/gcc/openmpi/bin/mpicc hw.c -o hw $ /usr/lib64/mpi/gcc/openmpi/bin/mpiexec $PWD/hw Process 0 on seven out of 1 $ readelf -a hw | grep NEEDED 0x0000000000000001 (NEEDED) Shared library: [libmpi.so.0] 0x0000000000000001 (NEEDED) Shared library: [libopen-rte.so.0] 0x0000000000000001 (NEEDED) Shared library: [libopen-pal.so.0] 0x0000000000000001 (NEEDED) Shared library: [libdl.so.2] 0x0000000000000001 (NEEDED) Shared library: [libnsl.so.1] 0x0000000000000001 (NEEDED) Shared library: [libutil.so.1] 0x0000000000000001 (NEEDED) Shared library: [libm.so.6] 0x0000000000000001 (NEEDED) Shared library: [libpthread.so.0] 0x0000000000000001 (NEEDED) Shared library: [libc.so.6] -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.