From f1a2645924fd3e8efc17aae7cd98af5000466233 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8egh?= Date: Thu, 5 Jan 2017 19:19:04 +0100 Subject: [PATCH] As julia uses precompiled sysimg by default now, switch to do it as well. Fix #28 (#32) --- src/BuildExecutable.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildExecutable.jl b/src/BuildExecutable.jl index e43f14b..d422fdc 100644 --- a/src/BuildExecutable.jl +++ b/src/BuildExecutable.jl @@ -261,7 +261,7 @@ function emit_cmain(cfile, exename, relocation) int main(int argc, char *argv[]) { - char sysji[] = "$(sysji).ji"; + char sysji[] = "$(sysji).$(Libdl.dlext)"; char *sysji_env = getenv("JULIA_SYSIMAGE"); char mainfunc[] = "main()";