-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Distinctly Bettergit status Called init then System/gc...no crash!
- Loading branch information
Showing
7 changed files
with
133 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ pom.xml.asc | |
/.nrepl-port | ||
.hgignore | ||
.hg/ | ||
julia-1.5.3* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "julia"] | ||
path = julia | ||
url = [email protected]:JuliaLang/julia.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
package julia_clj; | ||
|
||
|
||
import com.sun.jna.*; | ||
import java.util.*; | ||
|
||
public class JLOptions extends Structure { | ||
public byte quiet; | ||
public byte banner; | ||
public Pointer julia_bindir; | ||
public Pointer julia_bin; | ||
public Pointer cmds; | ||
public Pointer image_file; | ||
public Pointer cpu_target; | ||
public int nthreads; | ||
public int nprocs; | ||
public Pointer machine_file; | ||
public Pointer project; | ||
public byte isinteractive; | ||
public byte color; | ||
public byte historyfile; | ||
public byte startupfile; | ||
public byte compile_enabled; | ||
public byte code_coverage; | ||
public byte malloc_log; | ||
public byte opt_level; | ||
public byte debug_level; | ||
public byte check_bounds; | ||
public byte depwarn; | ||
public byte warn_overwrite; | ||
public byte can_inline; | ||
public byte polly; | ||
public Pointer trace_compile; | ||
public byte fast_math; | ||
public byte worker; | ||
public Pointer cookie; | ||
public byte handle_signals; | ||
public byte use_sysimage_native_code; | ||
public byte use_compiled_modules; | ||
public Pointer bindto; | ||
public Pointer outputbc; | ||
public Pointer outputunoptbc; | ||
public Pointer outputo; | ||
public Pointer outputasm; | ||
public Pointer outputji; | ||
public Pointer output_code_coverage; | ||
public byte incremental; | ||
public byte image_file_specified; | ||
public byte warn_scope; | ||
public static class ByReference extends JLOptions implements Structure.ByReference {} | ||
public static class ByValue extends JLOptions implements Structure.ByValue {} | ||
public JLOptions () {} | ||
public JLOptions (Pointer p) { super(p); read(); } | ||
protected List getFieldOrder() { return Arrays.asList(new String[] | ||
{ | ||
"quiet", | ||
"banner", | ||
"julia_bindir", | ||
"julia_bin", | ||
"cmds", | ||
"image_file", | ||
"cpu_target", | ||
"nthreads", | ||
"nprocs", | ||
"machine_file", | ||
"project", | ||
"isinteractive", | ||
"color", | ||
"historyfile", | ||
"startupfile", | ||
"compile_enabled", | ||
"code_coverage", | ||
"malloc_log", | ||
"opt_level", | ||
"debug_level", | ||
"check_bounds", | ||
"depwarn", | ||
"warn_overwrite", | ||
"can_inline", | ||
"polly", | ||
"trace_compile", | ||
"fast_math", | ||
"worker", | ||
"cookie", | ||
"handle_signals", | ||
"use_sysimage_native_code", | ||
"use_compiled_modules", | ||
"bindto", | ||
"outputbc", | ||
"outputunoptbc", | ||
"outputo", | ||
"outputasm", | ||
"outputji", | ||
"output_code_coverage", | ||
"incremental", | ||
"image_file_specified", | ||
"warn_scope" | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cf720be
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JuliaLang/julia#36092