<html>Hi,<br><br>I have problems. Can you helpe-me!<br><br>I did one simple C++ program, and compile and link w/G++, see.<br><br>------------------------------------------------------------------------------------------------------------------------------------------<br>-bash-3.00# more main.cpp<br>#include &lt;iostream&gt;<br><br>int main()<br>{<br>&nbsp;&nbsp; std::cout &lt;&lt; "Test" &lt;&lt; std::endl;<br><br>&nbsp;&nbsp; return 0;<br>}<br><br><br>-bash-3.00# g++ -g main.cpp -o main<br>-bash-3.00# ./main<br>Test<br>-bash-3.00#<br>------------------------------------------------------------------------------------------------------------------------------------------<br><br>Then I did <br>-bash-3.00# make distclean<br>-bash-3.00# ./configure CC=gcc CXX=g++ --disable-f77 --disable-fc --prefix=/MPICH/mpich2-install/ 2&gt;&amp;1 | tee c.txt<br>...<br>config.status: executing default-3 commands<br>Configuration completed.<br>-bash-3.00# make 2&gt;&amp;1 | tee m.txt<br>...<br>make: ** [all-redirect] Erro 2<br>-bash-3.00#<br><br>&nbsp;In configuration pahse all appers to be Ok now, but make return error...<br><br>Any Idea?<br><br>Thaks !!!!<br><br><br><br><div><font face="Verdana" size="2" color="#0000ff"></font>&nbsp;</div>
<blockquote style="border-left: 2px solid rgb(0, 0, 255); padding-left: 5px; margin-left: 5px; margin-right: 0px;"><font face="Tahoma" size="2">-----Original Message-----<br><b>From:</b> Anthony Chan [mailto:chan@mcs.anl.gov]<br><b>Sent:</b> Tuesday, November 1, 2011 02:00 PM<br><b>To:</b> mpich-discuss@mcs.anl.gov<br><b>Subject:</b> Re: [mpich-discuss] Fwd: configure: error: unable to determine matching C type for C++ bool<br><br></font>
Use g++ to compile/link a simple program.  Make sure it runs.
If you still get the linker error of libstdc++.so.6, try
setting LD_LIBRARY_PATH to point to /usr/sfw/lib.  If that works,
set LD_LIBRARY_PATH in your environment and rerun configure again.
Since you are doing an inpath build, be sure to do "make distclean"
before runing configure again.

A.Chan

----- Original Message -----
&gt; Hi,
&gt; My libstdc++.so.6 is in /usr/sfw/lib
&gt; 
&gt; -bash-3.00# ls /usr/sfw/lib/libstdc++.so*
&gt; /usr/sfw/lib/libstdc++.so /usr/sfw/lib/libstdc++.so.6.0.3
&gt; /usr/sfw/lib/libstdc++.so.6
&gt; -bash-3.00#
&gt; 
&gt; How to I tell this to MPI configurator? Have any way?
&gt; 
&gt; Thanks
&gt; 
&gt; 
&gt; -----Original Message-----
&gt; From: Anthony Chan [mailto:chan@mcs.anl.gov]
&gt; Sent: Tuesday, November 1, 2011 12:42 PM
&gt; To: mpich-discuss@mcs.anl.gov
&gt; Subject: Re: [mpich-discuss] Fwd: configure: error: unable to
&gt; determine matching C type for C++ bool
&gt; 
&gt; Your g++ does not work either, same error as before. It is
&gt; possibleyour c++ is just g++. If you don't need C++ support, you could
&gt; disableit by adding --disable-cxx to your configure command. If you do
&gt; need C++support, you need to find out why libstdc++.so.6 isn't
&gt; there...configure:40496: g++ -o conftest -O2
&gt; -I/MPICH/Source/mpich2-1.4.1p1/src/mpl/include
&gt; -I/MPICH/Source/mpich2-1.4.1p1/src/mpl/include
&gt; -I/MPICH/Source/mpich2-1.4.1p1/src/openpa/src
&gt; -I/MPICH/Source/mpich2-1.4.1p1/src/openpa/src conftest.cpp
&gt; &gt;&amp;5configure:40500: $? = 0configure:40506: ./conftestld.so.1:
&gt; conftest: fatal: libstdc++.so.6: open failed: No such file or
&gt; directory./configure: line 40508: 2921 Killed
&gt; ./conftest$ac_exeextconfigure:40510: $? = 137configure: program exited
&gt; with status 137A.Chan----- Original Message -----&gt; Sorry again,&gt; &gt;
&gt; Follows...&gt; &gt; -----Original Message-----&gt; From: Anthony Chan
&gt; [mailto:chan@mcs.anl.gov]&gt; Sent: Tuesday, November 1, 2011 11:59 AM&gt;
&gt; To: mpich-discuss@mcs.anl.gov&gt; Subject: Re: [mpich-discuss] Fwd:
&gt; configure: error: unable to&gt; determine matching C type for C++ bool&gt; &gt;
&gt; ----- Original Message -----&gt; &gt; -bash-3.00# ./configure CC=gcc
&gt; CXX=g++&gt; --disable-f77 --disable-fc&gt; --prefix=/MPICH/mpich2-install/
&gt; 2&gt;&amp;1 | tee&gt; c.txt&gt; &gt; This is correct?&gt; &gt; Dont work :0(You need to send
&gt; us your&gt; c.txt and config.log to show what went&gt;
&gt; wrong.A.Chan_______________________________________________mpich-discuss&gt;
&gt; mailing list mpich-discuss@mcs.anl.govTo manage subscription options&gt;
&gt; or&gt;
&gt; unsubscribe:https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss&gt;
&gt; &gt; _______________________________________________&gt; mpich-discuss
&gt; mailing list mpich-discuss@mcs.anl.gov&gt; To manage subscription options
&gt; or unsubscribe:&gt;
&gt; https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss_______________________________________________mpich-discuss
&gt; mailing list mpich-discuss@mcs.anl.govTo manage subscription options
&gt; or
&gt; unsubscribe:https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
&gt; 
&gt; _______________________________________________
&gt; mpich-discuss mailing list mpich-discuss@mcs.anl.gov
&gt; To manage subscription options or unsubscribe:
&gt; https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
_______________________________________________
mpich-discuss mailing list     mpich-discuss@mcs.anl.gov
To manage subscription options or unsubscribe:
https://lists.mcs.anl.gov/mailman/listinfo/mpich-discuss
</blockquote></html>