Skip to content

Commit

Permalink
add jl_options_t struct
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebolewski committed Dec 29, 2014
1 parent d066c3f commit 2a72e4e
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/julia.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit 2a72e4e

Please sign in to comment.