On 06.11.2007, at 10:42, Åke Sandgren wrote:
Hi,
On Tue, 2007-11-06 at 10:28 +0100, Michael Schulz wrote:
Hi,
I've the same problem described by some other users, that I can't
compile anything if I'm using the open-mpi compiled with the Intel-
Compiler.
ompi_info --all
Segmentation fault
OpenSUSE 10.3
Kernel: 2.6.22.9-0.4-default
Intel P4
Configure-Flags: CC=icc, CXX=icpc, F77=ifort, F90=ifort
Intel-Compiler: both, C and Fortran 10.0.025
Is there any known solution?
I had the same problem with pathscale.
Try this, i think it is the solution i found.
diff -ru site/opal/runtime/opal_init.c
amd64_ubuntu606-psc/opal/runtime/opal_init.c
--- site/opal/runtime/opal_init.c 2007-10-20 03:00:35.000000000
+0200
+++ amd64_ubuntu606-psc/opal/runtime/opal_init.c 2007-10-23
16:12:15.000000000 +0200
@@ -169,7 +169,7 @@
}
/* register params for opal */
- if (OPAL_SUCCESS != opal_register_params()) {
+ if (OPAL_SUCCESS != (ret = opal_register_params())) {
error = "opal_register_params";
goto return_error;
}
thanks, but this doesn't solve my segv Problem.
Michael