<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 14 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:11.0pt;
        font-family:"Calibri","sans-serif";
        mso-fareast-language:EN-US;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
span.E-MailFormatvorlage17
        {mso-style-type:personal-compose;
        font-family:"Calibri","sans-serif";
        color:windowtext;}
.MsoChpDefault
        {mso-style-type:export-only;
        mso-fareast-language:EN-US;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 2.0cm 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=DE link=blue vlink=purple><div class=WordSection1><p class=MsoNormal>Dear all,<o:p></o:p></p><p class=MsoNormal><o:p>&nbsp;</o:p></p><p class=MsoNormal><span lang=EN-US>i am trying to compile my own Libhsl.dll from the sourcecode. I obtained the sourcecode from the HSL website and copied it into the /ThirdParty/HSL folder.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>I am using MINGW/MSYS on Windows 7. According to the INSTALL.HSL file from the same folder I now run the configure script found in the the /ThirdParty/HSL folder:<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>./configure --enable-doscompile --enable-shared --enable-loadable-library &#8211;with-blas=&#8221;-L$HOME/lib/-lmyblas&#8221; &#8211;with-metis-lib=&#8221;-L$HOME/lib/-lmymetis&#8221;<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>The configure script proceeds without errors and terminates with the message :<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>Configure: Configuration of ThirdPartyHSL successful<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>When I run make install I see that some fortran files are compiled into .o files and placed into the folder. When the makefile reaches the rule for libhsl.dll, things start to fall apart.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>Especially this part fails:<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; bla=; \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; for i in $(nodist_libcoinhsl_la_SOURCES); do \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; case $$i in \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; *.f) \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; obj=`echo $$i| sed -e 's|\(.*\).[cf]|.libs/\1.$(OBJEXT)|g'` ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if test -r $$obj; then \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bla=&quot;$$bla $$obj&quot; ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; else \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; bla=&quot;$$bla `echo $$i| sed -e 's|\(.*\).[cf]|\1.$(OBJEXT)|g'`&quot; ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fi ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;; \<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; esac ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>@BUILD_COINHSL_TRUE@@EXTRA_SHARED_COMMAND_TRUE@&nbsp;&nbsp;&nbsp;&nbsp; done ;\<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>The variable $bla is left empty and gfortran.exe quits with the severe error: no input files.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>I really don&#8217;t know where to proceed from now. The install.Hsl doesn&#8217;t say what to do in case of errors. I had really high hopes to at least compile the libhsl.dll on Windows, but alas this proved not fruitful.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>I think, if I knew the correct contents the bla variable should have I could compile the file, as all the other .o files are already built. Does anybody know a command for this? I tried adding all the .f files in the folder, but this also failed.<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US><o:p>&nbsp;</o:p></span></p><p class=MsoNormal><span lang=EN-US>Regards<o:p></o:p></span></p><p class=MsoNormal><span lang=EN-US>Jochen<o:p></o:p></span></p></div></body></html>