cl-autowrap
cl-autowrap copied to clipboard
Force use a specfic arch .spec file
I need to specific the architecture to the c-include, because I need compile the system (cl-sdl2) to armv7a .fasb in my Linux, and not in the armv7a device.
There is some way to get it?
If not, I can write this.
No; if you do, you should do something like (defvar *autowrap-arch-override*)
or similar.
I was not aware of any CL compiler that could cross-compile; this seems .. difficult. Alternatively a bit surprising it doesn't try to mimic the target environment.
The ECL can does this. I compile the .fasb or .fas to ARM in the Linux, and load this file in ECL in the the Android phone. It's working fine.
No; if you do, you should do something like
(defvar *autowrap-arch-override*)
or similar.
I'll do this.