Skip to content

Commit

Permalink
Remove redundant default, add interp option.
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewMerrill committed Oct 20, 2019
1 parent e8215be commit a8a88b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
project('ish', 'c',
default_options: ['default_library=static', 'c_std=gnu11', 'engine=jit', 'warning_level=2'])
default_options: ['default_library=static', 'c_std=gnu11', 'warning_level=2'])

log_on = get_option('log').split()
log_off = get_option('nolog').split()
Expand Down
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ option('log', type: 'string', value: '')
option('nolog', type: 'string', value: '')
option('log_handler', type: 'string', value: 'dprintf')

option('engine', type: 'combo', choices: ['jit'], value: 'jit')
option('engine', type: 'combo', choices: ['jit', 'interp'], value: 'jit')

option('vdso_c_args', type: 'string', value: '')

Expand Down

0 comments on commit a8a88b7

Please sign in to comment.