Re: [Ecls-list] compile package dependencies to C

2013-03-07 Thread Matthew Mondor
On Thu, 7 Mar 2013 13:26:22 -0500 Sam Sam wrote: > Now, about the name mangling - is there any way to control it? For example, i > had a (defun main ... > which > got renamed to L1main(). Not so bad yet, but the top-level LISP code > gets wrapped in a function with a completely random and unpr

Re: [Ecls-list] compile package dependencies to C

2013-03-07 Thread Sam Sam
To: mm_li...@pulsar-zone.net CC: ecls-list@lists.sourceforge.net Subject: Re: [Ecls-list] compile package dependencies to C On Fri, Mar 1, 2013 at 11:26 PM, Matthew Mondor wrote: I've not tried it with asdf, but does setting C::*DELETE-FILES* to NIL help? This will leave the files,

Re: [Ecls-list] compile package dependencies to C

2013-03-02 Thread Juan Jose Garcia-Ripoll
On Fri, Mar 1, 2013 at 11:26 PM, Matthew Mondor wrote: > > I've not tried it with asdf, but does setting C::*DELETE-FILES* to NIL > help? This will leave the files, but ASDF makes pretty ugly names and places the files in a common location (~/.cache/common-lisp/...) For debugging it is normally

Re: [Ecls-list] compile package dependencies to C

2013-03-01 Thread Matthew Mondor
On Fri, 1 Mar 2013 14:30:41 -0500 Sam Sam wrote: > Currently, i use (asdf:make-build :example but that doesnt leave any C files > around. > > example.asd: > > (defsystem :example > :depends-on (:cl-opengl :cl-glu :cl-glut) > :serial t > :components ((:file "simple"))) I've not tried it

[Ecls-list] compile package dependencies to C

2013-03-01 Thread Sam Sam
Hi, I have the following package definition. How do I compile all my components listed in my .ASD, as well as ALL their package dependencies to C source? In other words, I want to keep all .C/.H files that go into building the native executable. In this case, this includes .C files for cl-o