Hi there,
I am using PackageCompiler to build an executable on windows. I have a main function and run build_executable function to create my executable.
my julia_main is:
module mystuff
Base.@ccallable function julia_main(ARGS::Vector{String})::Cint
include(“hello.jl”)
return 0
end
end
where hello.jl countain a println(“Hello World”)
the build_executable work perfectly and create an exe file, but when I run the exe file it failed and doesnt not run the include(“hello.jl”) any idea why?
thank you