static-julia icon indicating copy to clipboard operation
static-julia copied to clipboard

Static AOT Julia compilation, demos and instructions

Results 18 static-julia issues
Sort by recently updated
recently updated
newest added

I get this error running "hello": ``` fatal: error thrown and no exception handler available. Base.InitError(mod=:LibGit2, error=ErrorException("error initializing LibGit2 module")) rec_backtrace at /home/mauro/julia/julia-0.6/src/stackwalk.c:84 record_backtrace at /home/mauro/julia/julia-0.6/src/task.c:245 jl_throw at /home/mauro/julia/julia-0.6/src/task.c:564 __init__...

I have successfully compiled all my programs and used them in my computer (windows 10). But I am having portability issues. When I compile on my "windows 10 64bits core...

I copied from `program2.c` the follwing step: ```julia jl_value_t *type = jl_apply_array_type(jl_string_type, 1); jl_array_t *ARGS = jl_alloc_array_1d(type, 0); JL_GC_PUSH1(&ARGS); jl_array_grow_end(ARGS, argc - 1); for (i = 1; i < argc;...

Hi, I am very excited about what *I think* you are trying to achieve with this project. However, I am not sure if my impression is correct and I have...

In the readme it says that with julia 0.7 a single binary file can be generated. But doing `julia juliac.jl -ve` currently produces an executable and a dylib (I'm on...

It looks like the script doesn't automatically find the system compiler on Windows or use WinRPM. This https://github.com/JuliaLang/julia/blob/master/contrib/build_sysimg.jl#L110 function would be helpful. ```julia $ julia juliac.jl test.jl Program file: C:\Users\Mus\static-julia\test.jl...

We should get CI setup for this repo at some point.

What is the best (standard?) way to detect a `static-julia` build ? Perhaps there should be `Base.is_static_julia() -> Bool` ? I currently have the following at the bottom of my...