GR.jl
GR.jl copied to clipboard
Ubuntu on Jetson Nano aarch64 issue
On my Jetson Nano, GR.jl fails the build test because it looks for the "Linux" binary instead of the "Debian" one, even though I am running Ubuntu. There is no "Linux" binary for aarch64. A couple small edits, adding the id_like test, to my build.jl fixed the issue, starting on line 127
elseif os == :Linux && arch == :aarch64 id = get_os_release("ID") id_like = get_os_release("ID_LIKE") if id == "debian" || id_like == "debian" os = "Debian" end end
Thanks. I fixed the build script.
Awesome, thanks.
Is there a blocker on this being released?