GR.jl icon indicating copy to clipboard operation
GR.jl copied to clipboard

Ubuntu on Jetson Nano aarch64 issue

Open BPMinaker opened this issue 3 years ago • 3 comments

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

BPMinaker avatar Dec 07 '20 19:12 BPMinaker

Thanks. I fixed the build script.

jheinen avatar Dec 08 '20 07:12 jheinen

Awesome, thanks.

BPMinaker avatar Dec 15 '20 01:12 BPMinaker

Is there a blocker on this being released?

rustyconover avatar Jan 20 '21 14:01 rustyconover