Remove redundant default, add interp option.

This commit is contained in:
Matthew Merrill 2019-10-19 21:10:11 -07:00
parent e8215beacd
commit a8a88b7ef1
2 changed files with 2 additions and 2 deletions

View File

@ -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()

View File

@ -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: '')