<div>To add on more.....</div>
<div>I was compiling on bash shell.......and i tried below commands on bash shell prompt and it works fine, so I don&#39;t think MY_EXPORTED_LIBS is creating problem here:</div>
<div><br>lperf011-root&gt;<br>lperf011-root&gt; VAR=abcd<br>lperf011-root&gt; echo $VAR<br>abcd</div>
<div>lperf011-root&gt;<br>lperf011-root&gt; export TMPVAR=&quot;$VAR&quot;<br>lperf011-root&gt; echo $TMPVAR<br>abcd<br>lperf011-root&gt;</div>
<div>lperf011-root&gt;<br><br>Also, there was a typo in my earlier mail for point 2, where it should be &quot;--with-device=ch3:sock&quot; instead of &quot;--with-devicech3:sock&quot;, missed a &quot;=&quot; symbol.....</div>

<div> </div>
<div>-Arvind<br></div>
<div class="gmail_quote">On Fri, Jan 22, 2010 at 11:29 AM, Arvind Petaru <span dir="ltr">&lt;<a href="mailto:arvindpetaru@gmail.com">arvindpetaru@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">
<div>Hi Dave,</div>
<div> </div>
<div>    Thanks for your suggestion.</div>
<div>    I tried compiling following your suggestion and I still see the same errors.</div>
<div> </div>
<div>Steps I followed: </div>
<div>============</div>
<div> </div>
<div>1&gt; Removed everything from previous tmp build directory (i.e., /tmp/petara1/mpich2-1.2.1) and freshly created it again.</div>
<div> </div>
<div>2&gt; Configured as below  :-</div>
<div>     /petara1/mpich2/mpich2-1.2.1/configure -prefix=/mpich2-install --with-devicech3:sock 2&gt;&amp;1 | tee c.txt</div>
<div> </div>
<div>3&gt; As ususal I saw the below error in c.txt file.</div>
<div class="im">
<div>    /petara1/mpich2/mpich2-1.2.1/src/mpid/ch3/configure: MY_EXPORTED_LIBS= -lpthread: is not an identifier </div>
<div> </div></div>
<div>4&gt; Modified file ( /tmp/petara1/mpich2-1.2.1/src/mpid/ch3/configure.lineno, line 7259 ) as suggested by you as:</div>
<div class="im">
<div>     MY_EXPORTED_LIBS=&quot;$LIBS&quot;</div>
<div>     export MY_EXPORTED_LIBS</div>
<div> </div></div>
<div>5&gt; Tried compiling again as:</div>
<div>     make 2&gt;&amp;1 | tee m.txt</div>
<div> </div>
<div>6&gt; Fails with same reason</div>
<div> </div>
<div>Attaching new c.txt, m.txt and configure.log files.</div>
<div> </div>
<div>Cheers,</div>
<div> </div>
<div>-Arvind<br><br></div>
<div>
<div></div>
<div class="h5">
<div class="gmail_quote">On Thu, Jan 21, 2010 at 6:06 PM, Dave Goodell <span dir="ltr">&lt;<a href="mailto:goodell@mcs.anl.gov" target="_blank">goodell@mcs.anl.gov</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">It looks like the CH3 configure step didn&#39;t entirely complete, so a bunch of configure-generated files are missing.  Line 454 of your previously attached c.txt is particularly suspect:<br>
<br>--------8&lt;--------<br>/petara1/mpich2/mpich2-1.2.1/src/mpid/ch3/configure: MY_EXPORTED_LIBS= -lpthread: is not an identifier<br>--------8&lt;--------<br><br>Aha! As I&#39;m writing this I think I see the problem.  There&#39;s a bash/zsh-ism in src/mpid/ch3/<a href="http://configure.in/" target="_blank">configure.in</a>, line 311:<br>
<br>--------8&lt;--------<br>export MY_EXPORTED_LIBS=&quot;$LIBS&quot;<br>--------8&lt;--------<br><br>I don&#39;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:<br>
<br>--------8&lt;--------<br>MY_EXPORTED_LIBS=&quot;$LIBS&quot;<br>export MY_EXPORTED_LIBS<br>--------8&lt;--------<br><br>You are welcome to make that change yourself, but you&#39;ll need to regenerate the configure from the <a href="http://configure.in/" target="_blank">configure.in</a> by running &quot;./maint/updatefiles&quot; in the source tree, which itself requires particular versions of the autotools and some other utilities.  Alternatively, you can edit &quot;src/mpid/ch3/configure&quot; in the build tree directly, but I can&#39;t tell you exactly which line to change.  You&#39;ll just have to search for MY_EXPORTED_LIBS and make the change wherever it is.<br>
<font color="#888888"><br>-Dave</font> 
<div>
<div></div>
<div><br><br>On Jan 21, 2010, at 3:34 PM, Arvind Petaru wrote:<br><br>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">same errors...<br><br>On Thu, Jan 21, 2010 at 4:34 PM, Rajeev Thakur &lt;<a href="mailto:thakur@mcs.anl.gov" target="_blank">thakur@mcs.anl.gov</a>&gt; wrote:<br>
Does it give the same error or a different error?<br><br>Rajeev<br><br>From: <a href="mailto:mpich-discuss-bounces@mcs.anl.gov" target="_blank">mpich-discuss-bounces@mcs.anl.gov</a> [mailto:<a href="mailto:mpich-discuss-bounces@mcs.anl.gov" target="_blank">mpich-discuss-bounces@mcs.anl.gov</a>] On Behalf Of Arvind Petaru<br>
Sent: Thursday, January 21, 2010 3:32 PM<br><br>To: <a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br>Subject: Re: [mpich-discuss] Compilation of MPCH2-1.2.1 is failing onSunSolaris 10 (Sparc)<br>
<br>Forgot to mention earlier....I tried that too(--with-device=ch3:sock) and it fails........<br><br>-Arvind<br><br>On Thu, Jan 21, 2010 at 4:27 PM, Rajeev Thakur &lt;<a href="mailto:thakur@mcs.anl.gov" target="_blank">thakur@mcs.anl.gov</a>&gt; wrote:<br>
Can you try configuring with --with-device=ch3:sock (followed by make and make install) and see if that works?<br><br>Rajeev<br><br>From: <a href="mailto:mpich-discuss-bounces@mcs.anl.gov" target="_blank">mpich-discuss-bounces@mcs.anl.gov</a> [mailto:<a href="mailto:mpich-discuss-bounces@mcs.anl.gov" target="_blank">mpich-discuss-bounces@mcs.anl.gov</a>] On Behalf Of Arvind Petaru<br>
Sent: Thursday, January 21, 2010 2:19 PM<br>To: <a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br>Subject: [mpich-discuss] Compilation of MPCH2-1.2.1 is failing on SunSolaris 10 (Sparc)<br>
<br><br>Hi,<br><br>  I&#39;m new to MPI programming.<br>  I installed MPICH2 on my Sun Solaris 10, SPARC version and tried to configure &amp; compile it on this machine.<br>  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.<br>
  I&#39;d appreciate if someone can help me in this regards.<br><br>  Attaching c.txt, m.txt, config.log, config.system and config.status files for your reference.<br><br>   Let me know if you need any other info.<br><br>
-- <br>Cheers,<br><br>-Arvind<br><br><br><br>-- <br>Cheers,<br><br>-Arvind<br><br>_______________________________________________<br>mpich-discuss mailing list<br><a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br>
<a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br><br><br><br><br>-- <br>Cheers,<br><br>-Arvind<br><br>_______________________________________________<br>
mpich-discuss mailing list<br><a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>
<br><br><br><br>-- <br>Cheers,<br><br>-Arvind<br>_______________________________________________<br>mpich-discuss mailing list<br><a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br>
<a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br></blockquote><br>_______________________________________________<br>mpich-discuss mailing list<br>
<a href="mailto:mpich-discuss@mcs.anl.gov" target="_blank">mpich-discuss@mcs.anl.gov</a><br><a href="https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss" target="_blank">https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss</a><br>
</div></div></blockquote></div><br><br clear="all"><br></div></div>-- <br>Cheers,<br><font color="#888888"><br>-Arvind<br></font></blockquote></div><br><br clear="all"><br>-- <br>Cheers,<br><br>-Arvind<br>