cl-autowrap icon indicating copy to clipboard operation
cl-autowrap copied to clipboard

Force use a specfic arch .spec file

Open noloop opened this issue 5 years ago • 2 comments

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.

noloop avatar Jan 14 '20 17:01 noloop

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.

rpav avatar Jan 16 '20 13:01 rpav

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.

noloop avatar Jan 16 '20 15:01 noloop