I've painlessly used the "How I Start" (
[http://howistart.org/posts/nim/1/index.html](http://howistart.org/posts/nim/1/index.html)
) build instructions link from the Nim doc page a bunch of times on ARM
devices over the past few years. But, just now when I really need it to work,
I'm having trouble.
at the last step:
./koch boot -d:release
Run
I get:
: execution of an external program failed: 'gcc -c -w -O3
-fno-strict-aliasing -I/home/debian/work/Nim/lib -o
/home/debian/work/Nim/nimcache/r_linux_arm/stdlib_system.c.o
/home/debian/work/Nim/nimcache/r_linux_arm/stdlib_system.c'
Run
If I run that command all by itself, it succeeds. But
./koch tools
Run
also fails with
: execution of an external program failed: 'gcc -c -w -pthread -O3
-fno-strict-aliasing -I/home/debian/work/Nim/lib -o
/home/debian/.cache/nim/nimsuggest_r/linenoise.c.o
/home/debian/work/Nim/lib/wrappers/linenoise/linenoise.c'
Run
Ultimately, just cross-compiling from linux would be fine. But, that resulted
in
/lib/arm-linux-gnueabihf/libc.so.6: version `GLIBC_2.28' not found
(required by ./myapp
Run
when I tried to run it on the beaglebone, which may be the easier issue to
solve, now.
any ideas? Which of these issues is easier to solve? thanks.