3636"""
3737 build_shared_lib(
3838 julia_program, output_name = nothing;
39- snoopfile = nothing, builddir = nothing,
40- verbose = false, quiet = false, copy_julialibs = true, copy_files = nothing,
41- release = false,
39+ snoopfile = nothing, builddir = nothing, verbose = false, quiet = false,
40+ copy_julialibs = true, copy_files = nothing, release = false, Release = false,
4241 sysimage = nothing, precompiled = nothing, compilecache = nothing,
4342 home = nothing, startup_file = nothing, handle_signals = nothing,
4443 compile = nothing, cpu_target = nothing, optimize = nothing, debug = nothing,
5150"""
5251function build_shared_lib (
5352 julia_program, output_name = nothing ;
54- snoopfile = nothing , builddir = nothing ,
55- verbose = false , quiet = false , copy_julialibs = true , copy_files = nothing ,
56- release = false ,
53+ snoopfile = nothing , builddir = nothing , verbose = false , quiet = false ,
54+ copy_julialibs = true , copy_files = nothing , release = false , Release = false ,
5755 sysimage = nothing , precompiled = nothing , compilecache = nothing ,
5856 home = nothing , startup_file = nothing , handle_signals = nothing ,
5957 compile = nothing , cpu_target = nothing , optimize = nothing , debug = nothing ,
@@ -62,9 +60,8 @@ function build_shared_lib(
6260 )
6361 static_julia (
6462 julia_program, verbose = verbose, quiet = quiet,
65- builddir = builddir, outname = output_name, snoopfile = snoopfile,
66- autodeps = true , shared = true , copy_julialibs = copy_julialibs, copy_files = copy_files,
67- release = release,
63+ builddir = builddir, outname = output_name, snoopfile = snoopfile, autodeps = true , shared = true ,
64+ copy_julialibs = copy_julialibs, copy_files = copy_files, release = release, Release = release,
6865 sysimage = sysimage, precompiled = precompiled, compilecache = compilecache,
6966 home = home, startup_file = startup_file, handle_signals = handle_signals,
7067 compile = compile, cpu_target = cpu_target, optimize = optimize, debug = debug,
7673"""
7774 build_executable(
7875 julia_program, output_name = nothing, c_program = nothing;
79- snoopfile = nothing, builddir = nothing,
80- verbose = false, quiet = false, copy_julialibs = true, copy_files = nothing,
81- release = false,
76+ snoopfile = nothing, builddir = nothing, verbose = false, quiet = false,
77+ copy_julialibs = true, copy_files = nothing, release = false, Release = false,
8278 sysimage = nothing, precompiled = nothing, compilecache = nothing,
8379 home = nothing, startup_file = nothing, handle_signals = nothing,
8480 compile = nothing, cpu_target = nothing, optimize = nothing, debug = nothing,
9187"""
9288function build_executable (
9389 julia_program, output_name = nothing , c_program = nothing ;
94- snoopfile = nothing , builddir = nothing ,
95- verbose = false , quiet = false , copy_julialibs = true , copy_files = nothing ,
96- release = false ,
90+ snoopfile = nothing , builddir = nothing , verbose = false , quiet = false ,
91+ copy_julialibs = true , copy_files = nothing , release = false , Release = false ,
9792 sysimage = nothing , precompiled = nothing , compilecache = nothing ,
9893 home = nothing , startup_file = nothing , handle_signals = nothing ,
9994 compile = nothing , cpu_target = nothing , optimize = nothing , debug = nothing ,
@@ -102,9 +97,8 @@ function build_executable(
10297 )
10398 static_julia (
10499 julia_program, cprog = c_program, verbose = verbose, quiet = quiet,
105- builddir = builddir, outname = output_name, snoopfile = snoopfile,
106- autodeps = true , executable = true , copy_julialibs = copy_julialibs, copy_files = copy_files,
107- release = release,
100+ builddir = builddir, outname = output_name, snoopfile = snoopfile, autodeps = true , executable = true ,
101+ copy_julialibs = copy_julialibs, copy_files = copy_files, release = release, Release = release,
108102 sysimage = sysimage, precompiled = precompiled, compilecache = compilecache,
109103 home = home, startup_file = startup_file, handle_signals = handle_signals,
110104 compile = compile, cpu_target = cpu_target, optimize = optimize, debug = debug,
0 commit comments