@Gnimuc Could you please help in this?
I am trying to generate exe
file for my codes (which organized as below):
inside
/scr.folderpackage.jl
, I wrote the below
module folderpackage
Base.@ccallable function julia_main()::Cint
try
myfunction()
catch
Base.invokelatest(Base.display_error, Base.catch_stack())
return 1
end
return 0
end
###
using # all packages
####
# List of functions called by myfunction()
####
function myfunction()
# body
end
end #module
however, after I run create_app
, I have the below error:
I have even tried to compile the below demo but I got the below error (given that I could not add PackageCompilerX.jl).