On Thu, Nov 8, 2012 at 9:04 AM, Ralph Möritz <span dir="ltr"><<a href="mailto:ralph.moeritz@outlook.com" target="_blank">ralph.moeritz@outlook.com</a>></span> wrote:<br><div class="gmail_extra"><div class="gmail_quote">

<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">Re. #2, I don't really mind what ECL does with large constant strings behind the<br>


scenes, the point is that ECL *knows* which compiler it's using so it *could* do whatever is necessary such as setting *COMPILE-IN-CONSTANTS* or passing the appropriate compiler switches to find the ECL libs. If Franjo & the regulars don't have time to implement this,  I'll be happy to do it myself & post a patch - Just let me know where in the source to start looking.<br>

</blockquote><div><br></div><div>Sorry, my name is Juanjo, not Franjo :-) Regarding compile-in-constants, I think you guys do not know the real history. Microsoft's compiler has a severe limitation in compiler string size. This means we cannot build constant data that takes more than 64k. The only way we escape this in FASL files is by appending the data to the compiled file. This <b>does not work</b> with standalone executables for various reasons: we cannot append the data to the object files (the linker complains); even if this was solved, we cannot append it to the executable, because there is no way to locate it (other than searching through the path, but not even that, always).</div>

<div><br></div><div>So when you use (setq *compile-in-constants* t) you are implicitely accepting the following contract: my compiler is crap and I will not complain if it fails to build the library I want to use.</div><div>

<br></div><div>Since most users are using ECL for loading libraries, not building standalone files, right now we set *compile-in-constants* to NIL. We have to do so because there are libraries out there that generate a lot of constant data.</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">Re. #3, `ecl -o <executable -link <object>` works, but only after producing the object file, which still<br>


requires all the manual steps mentioned because `ecl -compile <lisp>` produces a FASL file, and `ecl -o <br>
<object> -compile <lisp>` gives the following error: (Provided `(ext:install-c-compiler)` is in your .eclrc,<br>
otherwise it just produces FASL output)<br>
<br>
    LINK : fatal error LNK1149: output filename matches input filename 'C:\Users\ralphm\Temp\src\experiments\lisp\hello-ecl\hello.obj'</blockquote></div><div><br></div><div>You have to use the flag "-s" which uses :system-p when compiling files. Otherwise you are telling ECL to create an object file and then to create a FASL file with the same name as the object file, which is obviously wrong.</div>

<div><br></div><div>Regarding ext;install-c-compiler, sorry, ECL defaults to the bytecodes compiler because this is what is most easily used in Windows -- not everybody has a C compiler. This may annoy you, but the reverse would annoy other people.</div>

<div><br></div><div>In any case, it is not that hard to do this one-liner</div><div><br></div><div><div>$ ecl -eval '(ext:install-c-compiler)' -o foo.o -compile foo.lsp -s</div><div>;;; Loading #P"/Users/jjgarcia/lib/ecl-12.7.1/asdf.fas"</div>

<div>;;; Loading #P"/Users/jjgarcia/quicklisp/setup.lisp"</div><div>;;; Loading "/Users/jjgarcia/lib/ecl-12.7.1/cmp.asd"</div><div>;;; Loading "/Users/jjgarcia/lib/ecl-12.7.1/cmp.fas"</div><div>

;;;</div><div>;;; Compiling foo.lsp.</div><div>;;; OPTIMIZE levels: Safety=2, Space=0, Speed=3, Debug=0</div><div>;;;</div><div>;;; End of Pass 1.</div><div>;;; Finished compiling foo.lsp.</div><div>;;;</div><div>$ ls foo.o</div>

<div>foo.o</div></div><div><br></div><div><br></div><div>Juanjo</div><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><br>


</div>