From 2a72e4ed0eeba86c0a9eafd1ad9a447f8c325230 Mon Sep 17 00:00:00 2001 From: jake bolewski Date: Thu, 18 Dec 2014 14:09:01 -0500 Subject: [PATCH] add jl_options_t struct --- src/julia.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/julia.h b/src/julia.h index 52f2f96f11abf6..e39f0987dd4e24 100644 --- a/src/julia.h +++ b/src/julia.h @@ -1315,6 +1315,7 @@ void jl_print_gc_stats(JL_STREAM *s); // debugging void show_execution_point(char *filename, int lno); + // compiler options ----------------------------------------------------------- typedef struct { @@ -1351,6 +1352,14 @@ extern DLLEXPORT jl_compileropts_t jl_compileropts; #define JL_COMPILEROPT_DUMPBITCODE_ON 1 #define JL_COMPILEROPT_DUMPBITCODE_OFF 2 +// julia options -------------------------------------------------------------- + +typedef struct { + compiler_opts_t *compiler_opts; +} jl_options_t + +extern DLLEXPORT jl_options_t jl_options; + // Version information #include "julia_version.h"