This message initially began as a query for help but after some debugging, I found a solution--so I&#39;m just posting the results for the benefit of others, since I&#39;ve seen that others have had this <a href="http://www.google.com/search?client=ubuntu&amp;channel=fs&amp;q=blas%2C+lapack%2C+matlab+64-bit%0A&amp;ie=utf-8&amp;oe=utf-8#q=ipopt,+matlab+interface,+On+entry+to+DPOTRF+parameter+number++4+had+an+illegal+value&amp;hl=en&amp;client=ubuntu&amp;channel=fs&amp;prmd=ivns&amp;filter=0&amp;bav=on.2,or.r_gc.r_pw.&amp;fp=44b3839bd44fe786" target="_blank">similar problem</a>.<br>

<br>I&#39;m running Matlab 7.10 glnxa64 on Ubuntu 10.10.  I am getting the following error when running the examplehs051.m from Matlab:  
&quot;On entry to DPOTRF parameter number  4 had an illegal value&quot;<br><br>I have tried the following suggestions from the mailing list, with no success:<br>(1)  Configure IPOPT using: --with-blas=BUILD and --with-lapack=BUILD. Make clean, recompile from scratch.<br>


(2)  Configure IPOPT using: g++-4.2 and gcc-4.2 (compatible for Matlab 7.10 glnxa64 on Linux). Make clean, recompile from scratch.<br>(3)  Configure IPOPT using: gfortran -fdefault-integer-8. Make clean, recompile from scratch.<br>


(4)  Configure IPOPT using: --with-blas=BUILD and --with-lapack=BUILD. Make clean, recompile from scratch.<br><br>All of the above compile successfully and run the given Matlab examples, except the example with limited memory hessian (examplehs051.m). Matlab still crashes.<br>


<br>(Another suggestion from the mailing list that I haven&#39;t tried:  Modify the wrappers in Ipopt/src/LinAlg/IpBlas.cpp and IpLapack.cpp and ma27)<br>
<br>WHAT FINALLY WORKED--&gt;   <br>Configure IPOPT using: ADD_CXXFLAGS=&#39;-DFUNNY_LAPACK_FINT&#39;.  Make clean, recompile from scratch.<br><br>Therefore, my configuration command is the following: <br>./configure --prefix=/apps/Ipopt-3.9.3/Install --enable-static --with-matlab-home=/apps/R2010a CXX=&#39;g++-4.2 -m64&#39; CC=&#39;gcc-4.2 -m64&#39; F77=&#39;gfortran -m64&#39; ADD_CXXFLAGS=&quot;-fPIC -fexceptions -DFUNNY_LAPACK_FINT&quot; ADD_CFLAGS=&quot;-fPIC -fexceptions&quot; ADD_FFLAGS=&quot;-fPIC -fexceptions&quot;<br>

<br>Andreas Waechter suggested the working solution in a thread from 3/14/2011.  Thanks so much, and I didn&#39;t see any response to this old thread that the suggestion worked, but it does work at least in my environment.<br>

<br>Many Thanks!  -Anya<br><br>
<br><br>