-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move JLCompilerOpts type to own file, rename compileropts to JLCompil…
…erOpts
- Loading branch information
1 parent
5d1c326
commit 0aee462
Showing
7 changed files
with
37 additions
and
38 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
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,19 @@ | ||
# Julia compiler options struct (see jl_compileropts_t in src/julia.h) | ||
immutable JLCompilerOpts | ||
julia_home::Ptr{Cchar} | ||
julia_bin::Ptr{Cchar} | ||
build_path::Ptr{Cchar} | ||
image_file::Ptr{Cchar} | ||
cpu_target::Ptr{Cchar} | ||
code_coverage::Int8 | ||
malloc_log::Int8 | ||
check_bounds::Int8 | ||
dumpbitcode::Int8 | ||
int_literals::Cint | ||
compile_enabled::Int8 | ||
opt_level::Int8 | ||
depwarn::Int8 | ||
can_inline::Int8 | ||
end | ||
|
||
JLCompilerOpts() = unsafe_load(cglobal(:jl_compileropts, JLCompilerOpts)) |
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
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
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