Can’t seem to find any good overviews on setting up a Julia project that talks about handling dependencies, compiling, build scripts, etc. So I’m groping my way through it. Presently I am trying to use the BuildExecutable package. When I run the script:
using BuildExecutable
build_executable("neapolitan", "src/neapolitan-command.jl", "bin", "native")
I get this error:
ERROR: LoadError: Unable to modify /usr/lib/x86_64-linux-gnu/libneapolitan.ji
So it is trying to write to /usr/lib
!
How do I fix? And even better, are there best practices for this stuff and any good docs explaining it?