<div class="gmail_quote">On Mon, May 3, 2010 at 4:56 PM, Seth Burleigh <span dir="ltr"><<a href="mailto:seth@tewebs.com">seth@tewebs.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

<div class="im">The goal is to incorporate all the c/c++ code  into the lisp files, not</div>
to create a c/c++ library. As i said, tight integration. The c++ library<br>
should be able to call the lisp code, and the lisp code should be able<br>
to call the c++ code. <br></blockquote><div><br></div><div>Nobody says it can not be done right now. I think right now you have two conceptual problems.</div><div><br></div><div>The first one is that you are assuming that ECL's compiler knows anything about C. It does not. It simply passes the chunks of code you write to the C compiler.</div>

<div><br></div><div>The second one is that you want seamless integration with the C world but the way you conceive it is not the way the C world expects it.</div><div><br></div><div>You have to understand the following: a C compiler needs to know what functions exist, what types there are, etc. This is all fine when one just writes ONE single lisp file because everything is translated into the SAME set of C sources.</div>

<div><br></div><div>What happens if you have multiple sources comprising a C application? They have to *share* the knowledge about the existence of functions and datatypes. Well, this is done in the header file, which is included in the sources via an #include and then used.</div>

<div><br></div><div>But what happens when you insist on defining all the C/C++ datatypes and functions in the lisp files? You *STILL* need a header. You have to have somewhere a file which declares what you are compiling. Why? Because ECL is not able to parse that information from your arbitrary chunks of C code. Otherwise we would be writing a C compiler ourselves.</div>

<div><br></div><div>Now the message is as follows: if you want multiple compiled lisp files to use the same datatypes and functions, then create a common header, foo.h, and store there the declarations of the datatypes.</div>

<div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
>Normally one has a C/C++ library with headers ...<br>
<br>
I know this, though i dont know much more.</blockquote><div><br></div><div>As you mentioned in your other email I guess it is important for you to really learn a bit more about C/C++ if you want to interact with it.</div>

<div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"> I guess i should rephrase my<br>
quesiton. How does ecl do this:<br>
<br>
The code below was created from the lisp code:<br>
(defun test2 ()<br>
 (ffi:c-inline nil nil :void "<br>
   CRectangle rect;<br>
   rect.set_values (3,4);<br>
   cout << \"area: \" << rect.area();"<br>
))<br>
<br>
How is the below function 'used' by the ecl compiler</blockquote><div><br></div><div>Again, the ECL compiler does not USE the code. It passes it to the C compiler which in turn produces what is expected. ECL is not going to parse your structure definitions, it is also not going to find out the C functions you define in the file and magically export them, it does not attempt to substitute the C compiler. So when the C compiler gets the code that ECL is producing it needs some hints.</div>

<div><br></div><div>One way that should just work:</div><div><br></div><div>* Create a common header myheader.h</div><div>* In that header write all common types you are going to need and declare the functions that are going to be defined.</div>

<div>* Let all your lisp files include that header using (ffi:clines "#include \"myheader.h\"") and then, in the lisp files you wish, write the C/C+ _definitions_</div><div>* Compile and link everything together using ECL's BUILDER routine. Roughly</div>

<div><br></div><div>(compile-file "file1.lisp" :output-file "file1.o" :system-p t)</div><div>...</div><div><div>(compile-file "file13.lisp" :output-file "file1.o" :system-p t)</div>

<div><br></div><div>(c::build-fasl "myfasl" :lisp-files '("file1.o" ... "file13.o"))</div><div><br></div><div>[ there may be typos above ]</div></div><div><br></div><div>Juanjo</div></div>

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