You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was really excited to see that AB now supports Julia v1.0.0. :) I was able to build my first application this morning. Which is great progress.
Unfortunately, when I go to run the application via ./builddir/gitviz.app/Contents/MacOS/main ARGS I get the following error:
fatal: error thrown and no exception handler available.
UndefVarError(var=:Vec3f0)
rec_backtrace at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/libjulia.dylib (unknown line)
jl_throw at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/libjulia.dylib (unknown line)
jl_undefined_var_error at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/libjulia.dylib (unknown line)
jl_get_binding_or_error at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/libjulia.dylib (unknown line)
gv_render! at /Users/jason/src/all/gitviz.git/src/render.jl:75
unknown function (ip: 0x125eee96b)
jl_fptr_trampoline at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/libjulia.dylib (unknown line)
gv_main at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/main.dylib (unknown line)
julia_main at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/main.dylib (unknown line)
julia_main at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/main.dylib (unknown line)
main at /Users/jason/src/all/gitviz.git/builddir/gitviz.app/Contents/MacOS/main (unknown line)
An @show reveals that my ARGS are being passed properly, but it blows up when calling gv_render!(), which is in a separate file. That file is included in the primary, and it also declares using Makie. I've attempted using GeometryTypes and LinearAlgebra, without success.
Is this a bug in ApplicationBuilder?
The text was updated successfully, but these errors were encountered:
All,
I was really excited to see that AB now supports Julia v1.0.0. :) I was able to build my first application this morning. Which is great progress.
Unfortunately, when I go to run the application via
./builddir/gitviz.app/Contents/MacOS/main ARGS
I get the following error:An
@show
reveals that myARGS
are being passed properly, but it blows up when callinggv_render!()
, which is in a separate file. That file is included in the primary, and it also declaresusing Makie
. I've attempted using GeometryTypes and LinearAlgebra, without success.Is this a bug in ApplicationBuilder?
The text was updated successfully, but these errors were encountered: