On Thu, Jul 1, 2010 at 3:33 AM, Pascal J. Bourguignon <span dir="ltr"><<a href="mailto:pjb@informatimago.com">pjb@informatimago.com</a>></span> wrote:<br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">

<br>
I get this error when asdf loading  :usocket.<br>
[pjb@kuiper :0.0 site]$ ls -ld /tmp<br>
drwxrwxrwt 9 root root 36864 Jul  1 03:18 /tmp/<br>
What could be the cause?<br></blockquote><div><br>ECL has to have the ability to load the same FASL file multiple times. Furthermore, these files must be deletable as the user may wish to overwrite them at any time. None of these requirements works with an implementation that relies on the operating system to load binaries.  Some reasons are<br>

* Binary file write permissions may be disabled when the file is loaded.<br>* The operating system may refuse to load a binary file with the same name as one that was already loaded.<br>* If the file is overwritten, some operating systems still refuse to load it again.<br>

...<br>The list is uncountable :-) After a lot of consideration the only solution I found is to perform a copy of each FASL file before LOADing it. Thus<br><br>LOAD<br>-> ecl_library_open<br> -> copy_object_file<br>

  -> si_copy_file<br> -> dlopen<br><br>At some point your OS seems to be refusing _also_ that the FASL file be copied, which is kind of weird. I hope this will help you find out what is the problem -- here usocket loads just fine :-/<br>

 </div><blockquote class="gmail_quote" style="margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;">
Also, is this something of slime or of ECL not to print the whole<br>
pathnames?  I've got *print-length* set to NIL, etc though...<br></blockquote><div><br>Probably Slime's debugger sets *print-length* or uses some custom printing format.<br clear="all"><br></div></div>Juanjo<br><br>

-- <br>Instituto de Física Fundamental, CSIC<br>c/ Serrano, 113b, Madrid 28006 (Spain) <br><a href="http://juanjose.garciaripoll.googlepages.com">http://juanjose.garciaripoll.googlepages.com</a><br>