<div dir="ltr">[The same message again - this time without the attachment - to make it work with the <a href="http://sorgeforge.net">sorgeforge.net</a> mail archive. For the attachment see here: <a href="http://sourceforge.net/mailarchive/attachment.php?list_name=ecls-list&message_id=CAMCvb%3DAZ4XtzpQ3kwc7qhjctNXTc5bhqWP0s4-cHVnhxXKf6AQ%40mail.gmail.com&counter=2">http://sourceforge.net/mailarchive/attachment.php?list_name=ecls-list&message_id=CAMCvb%3DAZ4XtzpQ3kwc7qhjctNXTc5bhqWP0s4-cHVnhxXKf6AQ%40mail.gmail.com&counter=2</a> ]<br>
<br>Hi,<br><br>Thanks Juanjo!  This (and some adaptions) made it work on my windows host as well :)<br><br>Dietrich<br><br>---<br>Just for the case that it might be helpful for somebody else here my changes (I attached a tar file with the files adapted to my windows install to this email).<br>
<br><br>* Usage (cygwin, 64 bit)<br><br>In a cygwin xterm:<br><br>$ tar zxvf embed-windows.tar.gz <br>$ cd embed-windows<br><br>  - Adapt the path of the batch file 'vcvars64.bat' in 'vsenv' to correspond to the local installation of Microsoft Visual Studio.<br>
<br>  - Adapt the variable 'ECL_INSTALLATION_DIR' in 'Makefile' to point to the ECL installation dir.<br><br>$ chmod 755 vsenv<br>$ ./vsenv nmake<br>$ ./hello.exe<br><br>hello-lisp!<br><br>$ ./vsenv nmake clean<br>
<br><br>* Changes to make the example work in a cygwin windows xterm<br><br>** vsenv<br><br>I used cygwin to compile and execute the example.<br><br>To set the environment required by the Microsoft Visual Studio 2010 x64 tools I created the script 'vsenv'.<br>
<br>'vsenv' generates a batch file which loads the environment required by the Microsoft Visual Studio 2010 x64 tools via 'vcvars64.bat' and then executes the command given on the remaining part of the command line.<br>
<br>The location of the script 'vcvars64.bat' on my computer has been hardcoded into 'vsenv' and might have to be adapted.<br><br><br>** hello.c<br><br>Microsoft's C compiler requires that variable declarations are at top of the scope they are used in.<br>
<br>I therefore had to move the 'extern void init_lib_HELLO_LISP(cl_object);' declaration to the top of the 'main()' function.<br><br><br>** Makefile<br><br>I moved the lisp code to compile 'hello-lisp.lisp' into a static library into the file 'compile.lisp' as nmake has problems with the blanks in the lisp code;<br>
<br>I added the line to the lisp build code to switch from the default bytecodes compiler to the c compiler as mentioned in Juanjo's email;<br><br>I extracted and adapted the necessary compiler and linker options from the batch file 'ecl-config.bat'.  The paths had to be adapted as they didn't correspond to the ECL installation directory.<br>
<br><div class="gmail_extra"><div class="gmail_quote">On Wed, May 29, 2013 at 11:40 PM, Juan Jose Garcia-Ripoll <span dir="ltr"><<a href="mailto:juanjose.garciaripoll@gmail.com" target="_blank">juanjose.garciaripoll@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">add -eval '(ext:install-c-compiler)' or similar (clause copied from the ANNOUNCEMENT) before ASDF. You are using the bytecodes compiler by default and this does not allow building object files</div>
<div class=""><div class="h5"><div class="gmail_extra">

<br><br><div class="gmail_quote">On Wed, May 29, 2013 at 3:22 PM, Dietrich Bollmann <span dir="ltr"><<a href="mailto:dietrich@formgames.org" target="_blank">dietrich@formgames.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">


<div><div dir="ltr"><span style="font-family:arial,sans-serif;font-size:13px">Hi Juanjo,</span><div style="font-family:arial,sans-serif;font-size:13px"><br></div><div style="font-family:arial,sans-serif;font-size:13px">

Thank you very much for this example!  Nothing is more helpful than some working code to start from!<br>
<div><br></div><div>On my windows installation, however, it still refuses to work:</div><div><br></div><div><div>ecl.exe -norc \</div><div>>   -eval '(require :asdf)' \</div><div>>   -eval '(push "./" asdf:*central-registry*)' \</div>



<div>>   -eval '(asdf:make-build :hello-lisp :type :static-library :move-here "./hello-lisp.lib")' \</div><div>>   -eval '(quit)'</div><div>;;; Loading #P"C:/Users/dietrich/home/cs/lang/lisp/ecl/64/git/install/asdf.fas"</div>



<div>An error occurred during initialization:</div><div>In COMPILE-FILE-PATHNAME, the type OBJECT is unsupported..</div><div><br></div><div>Any idea what is going wrong?</div><div><br></div><div>Thanks again,</div><div><br>



</div><div>Dietrich</div></div></div></div></div><div class="gmail_extra"><br><br><div class="gmail_quote"><div>On Wed, May 29, 2013 at 6:10 AM, Juan Jose Garcia-Ripoll <span dir="ltr"><<a href="mailto:juanjose.garciaripoll@gmail.com" target="_blank">juanjose.garciaripoll@gmail.com</a>></span> wrote:<br>



</div><div><div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex"><div dir="ltr">I just cooked a trivial example<div>
   <a href="https://sourceforge.net/p/ecls/ecl/ci/master/tree/examples/embed/" target="_blank">https://sourceforge.net/p/ecls/ecl/ci/master/tree/examples/embed/</a></div>


<div><br></div><div>

The example shows how to build a trivial Common Lisp package, compile it into a statically linked library using ECL and invoke it from a C program with which it is linked.</div><div><br></div><div>It should be trivial to generalize it to using shared libraries and dlopen().</div>





<div><br></div><div>Best,</div><div><br></div><div>Juanjo<span><font color="#888888"><br clear="all"><div><br></div>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br>
<a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a>
</font></span></div></div>
</blockquote></div></div></div><br></div>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com" target="_blank">http://juanjose.garciaripoll.googlepages.com</a>
</div>
</div></div></blockquote></div><br></div></div>