[mpich-discuss] Compilation of MPCH2-1.2.1 is failing onSunSolaris 10 (Sparc)
Dave Goodell
goodell at mcs.anl.gov
Thu Jan 21 17:06:55 CST 2010
It looks like the CH3 configure step didn't entirely complete, so a
bunch of configure-generated files are missing. Line 454 of your
previously attached c.txt is particularly suspect:
--------8<--------
/petara1/mpich2/mpich2-1.2.1/src/mpid/ch3/configure: MY_EXPORTED_LIBS=
-lpthread: is not an identifier
--------8<--------
Aha! As I'm writing this I think I see the problem. There's a bash/
zsh-ism in src/mpid/ch3/configure.in, line 311:
--------8<--------
export MY_EXPORTED_LIBS="$LIBS"
--------8<--------
I don't have the time to do it today, but I can try to build you a
release tarball with a fixed version tomorrow. The fix should be to
separate out the assignment from the export:
--------8<--------
MY_EXPORTED_LIBS="$LIBS"
export MY_EXPORTED_LIBS
--------8<--------
You are welcome to make that change yourself, but you'll need to
regenerate the configure from the configure.in by running "./maint/
updatefiles" in the source tree, which itself requires particular
versions of the autotools and some other utilities. Alternatively,
you can edit "src/mpid/ch3/configure" in the build tree directly, but
I can't tell you exactly which line to change. You'll just have to
search for MY_EXPORTED_LIBS and make the change wherever it is.
-Dave
On Jan 21, 2010, at 3:34 PM, Arvind Petaru wrote:
> same errors...
>
> On Thu, Jan 21, 2010 at 4:34 PM, Rajeev Thakur <thakur at mcs.anl.gov>
> wrote:
> Does it give the same error or a different error?
>
> Rajeev
>
> From: mpich-discuss-bounces at mcs.anl.gov [mailto:mpich-discuss-bounces at mcs.anl.gov
> ] On Behalf Of Arvind Petaru
> Sent: Thursday, January 21, 2010 3:32 PM
>
> To: mpich-discuss at mcs.anl.gov
> Subject: Re: [mpich-discuss] Compilation of MPCH2-1.2.1 is failing
> onSunSolaris 10 (Sparc)
>
> Forgot to mention earlier....I tried that too(--with-
> device=ch3:sock) and it fails........
>
> -Arvind
>
> On Thu, Jan 21, 2010 at 4:27 PM, Rajeev Thakur <thakur at mcs.anl.gov>
> wrote:
> Can you try configuring with --with-device=ch3:sock (followed by
> make and make install) and see if that works?
>
> Rajeev
>
> From: mpich-discuss-bounces at mcs.anl.gov [mailto:mpich-discuss-bounces at mcs.anl.gov
> ] On Behalf Of Arvind Petaru
> Sent: Thursday, January 21, 2010 2:19 PM
> To: mpich-discuss at mcs.anl.gov
> Subject: [mpich-discuss] Compilation of MPCH2-1.2.1 is failing on
> SunSolaris 10 (Sparc)
>
>
> Hi,
>
> I'm new to MPI programming.
> I installed MPICH2 on my Sun Solaris 10, SPARC version and tried
> to configure & compile it on this machine.
> I was not able to compile it successfully and it throws lot of
> errors. Not sure what could be the problem (or) if I am missing
> something.
> I'd appreciate if someone can help me in this regards.
>
> Attaching c.txt, m.txt, config.log, config.system and
> config.status files for your reference.
>
> Let me know if you need any other info.
>
> --
> Cheers,
>
> -Arvind
>
>
>
> --
> Cheers,
>
> -Arvind
>
> _______________________________________________
> mpich-discuss mailing list
> mpich-discuss at mcs.anl.gov
> https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
>
>
>
>
> --
> Cheers,
>
> -Arvind
>
> _______________________________________________
> mpich-discuss mailing list
> mpich-discuss at mcs.anl.gov
> https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
>
>
>
>
> --
> Cheers,
>
> -Arvind
> _______________________________________________
> mpich-discuss mailing list
> mpich-discuss at mcs.anl.gov
> https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
More information about the mpich-discuss
mailing list