Re: Is this thing on? Cross-compiling for ARM

Daniel KochmaƄski <[email protected]> Sun, 30 Dec 2018 20:56:09 +0100
Newsgroups gmane.lisp.ecl.general
Organization TurtleWare
Message-ID <[email protected]>
Alright, so the quick follow up:

The problem is that you try to cross-compile ECL with an older version
of the compiler. First you need to build the same version for your host
system and then use it to cross compile. Symbols in the table doesn't
match. When you do that use:

rm -rf build/
./configure --host=arm-linux-gnueabi
# now edit file build/cross_config  (set ECL_TO_RUN variable)

and all should work fine. If your toolchain doesn't have atomic_ops
library then build may have some problems if you need them. In that
case either use different flags or install said library.

Best regards,
Daniel