-
-
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.
Browse files
Browse the repository at this point in the history
Co-authored-by: Jameson Nash <vtjnash@gmail.com> (cherry picked from commit c5cb029)
- Loading branch information
1 parent
388f5df
commit d42ae5a
Showing
9 changed files
with
138 additions
and
99 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// This file is a part of Julia. License is MIT: https://julialang.org/license | ||
|
||
#ifndef JL_JLOPTIONS_H | ||
#define JL_JLOPTIONS_H | ||
|
||
// NOTE: This struct needs to be kept in sync with JLOptions type in base/options.jl | ||
|
||
typedef struct { | ||
int8_t quiet; | ||
int8_t banner; | ||
const char *julia_bindir; | ||
const char *julia_bin; | ||
const char **cmds; | ||
const char *image_file; | ||
const char *cpu_target; | ||
int32_t nthreads; | ||
int32_t nprocs; | ||
const char *machine_file; | ||
const char *project; | ||
int8_t isinteractive; | ||
int8_t color; | ||
int8_t historyfile; | ||
int8_t startupfile; | ||
int8_t compile_enabled; | ||
int8_t code_coverage; | ||
int8_t malloc_log; | ||
int8_t opt_level; | ||
int8_t opt_level_min; | ||
int8_t debug_level; | ||
int8_t check_bounds; | ||
int8_t depwarn; | ||
int8_t warn_overwrite; | ||
int8_t can_inline; | ||
int8_t polly; | ||
const char *trace_compile; | ||
int8_t fast_math; | ||
int8_t worker; | ||
const char *cookie; | ||
int8_t handle_signals; | ||
int8_t use_sysimage_native_code; | ||
int8_t use_compiled_modules; | ||
const char *bindto; | ||
const char *outputbc; | ||
const char *outputunoptbc; | ||
const char *outputo; | ||
const char *outputasm; | ||
const char *outputji; | ||
const char *output_code_coverage; | ||
int8_t incremental; | ||
int8_t image_file_specified; | ||
int8_t warn_scope; | ||
int8_t image_codegen; | ||
int8_t rr_detach; | ||
} jl_options_t; | ||
|
||
#endif |
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