its-pointless

Results 104 comments of its-pointless

what is output of ldd libjulia.so ?

could try using system compiler_rt. ln -sf /system/lib64/libcompiler_rt.so /data/data/com.termux/files/usr/lib/libcompiler_rt-termux.so

This is due to a limitation on android to hace to use LD_LIBRARY_PATH. The way around it is if something needs external library we have tp produce the dep output...

as a quick example ~/.julia/packages/ZMQ/ABGOx/deps/deps.jl const libzmq = "/data/data/com.termux/files/usr/lib/libzmq.so" check_deps is not defined here so we have to account for that so we remove that line from function __init__() in...

What is in there that is missing exactly? An arm gcc cross-compiler toolchain?

I can actually get a gcc cross compiler what cpu type is the device running termux are you planning on using?

okay so far whats happening here. can build arm-none-eabi cross compiler and im just going to repackage newlib libc etc. issues that are holding me up aren't neccesarily bugs in...

The issue is the linker scripts aren't working.

Iv had a brief go at it... Getting a compiled library is easy as it does it for you but im guessing you want python bindings?

Im doing a compile on a test device see if i can get it to build arm. Once that is done i can work out what is required from there.