<div dir="ltr">Hi Juan,<br><br><div class="gmail_quote">On Fri, Jun 28, 2013 at 4:54 PM, Juan Jose Garcia-Ripoll <span dir="ltr"><<a href="mailto:juanjose.garciaripoll@gmail.com" target="_blank">juanjose.garciaripoll@gmail.com</a>></span> wrote:<div class="im">
<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"><div class="gmail_extra"><div><br><div class="gmail_quote">
On Fri, Jun 28, 2013 at 5:37 AM, 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">
  - Is there some verbosity option which makes 'asdf:make-build' print out the commands used to build (and move) the library?<br><br>  - How can I figure out the cache directory from lisp?<br></blockquote></div><br>
</div>Those are not questions related to ECL but to ASDF's configuration. The first one I doubt it is or will be implemented, the second one is in their manual. </div></div></blockquote><div><br></div></div><div>Thank you. </div>
</div><div><br></div><div>Just for reference - the following works:</div><div><br></div><div>  - (asdf::apply-output-translations "library.lib")</div><div>    returns the file "library.lib" prefixed by the cache dir where it is built;</div>
<div><br></div><div>  - (asdf::system-source-directory system)</div><div>    returns the source directory of the system</div><div><br></div><div>So the following builds the shared library from the hello-lisp.asd file and moves both, the .dll and the .lib file to the source directory of the system:</div>
<div><br></div><div><div class="im"><div>(ext:install-c-compiler)</div><div>(require :asdf)</div><div>(push "./" asdf:*central-registry*)</div><div><br></div></div><div>(defun build-shared-library (system)</div>
<div>  (asdf:make-build system :type :shared-library :move-here "./")</div><div>  (let* ((lib-file (concatenate 'string (string-downcase (symbol-name system)) ".lib"))</div><div><span style="white-space:pre-wrap">   </span> (source   (asdf::apply-output-translations lib-file))</div>
<div><span style="white-space:pre-wrap">  </span> (target   (asdf::system-source-directory   system)))</div><div>    (asdf::rename-file-overwriting-target source target)))</div><div><br></div><div>(build-shared-library :hello-lisp)</div>
<div><br></div><div>(quit)</div></div><div><div></div><div><br></div><div>It would be nicer, though, if 'asdf:make-build' would move both to the ':move-here' directory: the .dll file as well as the .lib file.</div>
<div class=""><div id=":1hv" class="" tabindex="0"><img class="" src="https://mail.google.com/mail/u/0/images/cleardot.gif" style=""></div></div><div class="im"><div>Thanks for your help,</div><div><br></div><div>Dietrich</div>
<div><br></div></div></div><div class=""><div class="adm" style="font-family:arial,sans-serif;font-size:13px"></div><div class="im" style="font-family:arial,sans-serif;font-size:13px"></div></div></div><div class="gmail_extra">
<br><br><div class="gmail_quote">On Fri, Jun 28, 2013 at 4:54 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div class="gmail_extra"><div class="im"><br><div class="gmail_quote">On Fri, Jun 28, 2013 at 5:37 AM, 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:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div>  - Is there some verbosity option which makes 'asdf:make-build' print out the commands used to build (and move) the library?<br>



<br>  - How can I figure out the cache directory from lisp?<br></div></blockquote></div><br></div>Those are not questions related to ECL but to ASDF's configuration. The first one I doubt it is or will be implemented, the second one is in their manual.<div class="im">
<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>