mirror of
https://github.com/janet-lang/janet
synced 2024-11-30 20:09:54 +00:00
Add reduced_os option functionality.
This commit is contained in:
parent
f7f2f5e84f
commit
8d1e6ddffc
@ -58,6 +58,7 @@ conf.set('JANET_NO_DOCSTRINGS', not get_option('docstrings'))
|
|||||||
conf.set('JANET_NO_SOURCEMAPS', not get_option('sourcemaps'))
|
conf.set('JANET_NO_SOURCEMAPS', not get_option('sourcemaps'))
|
||||||
conf.set('JANET_NO_ASSEMBLER', not get_option('assembler'))
|
conf.set('JANET_NO_ASSEMBLER', not get_option('assembler'))
|
||||||
conf.set('JANET_NO_PEG', not get_option('peg'))
|
conf.set('JANET_NO_PEG', not get_option('peg'))
|
||||||
|
conf.set('JANET_REDUCED_OS', get_option('reduced_os'))
|
||||||
conf.set('JANET_NO_TYPED_ARRAY', not get_option('typed_array'))
|
conf.set('JANET_NO_TYPED_ARRAY', not get_option('typed_array'))
|
||||||
conf.set('JANET_NO_INT_TYPES', not get_option('int_types'))
|
conf.set('JANET_NO_INT_TYPES', not get_option('int_types'))
|
||||||
conf.set('JANET_RECURSION_GUARD', get_option('recursion_guard'))
|
conf.set('JANET_RECURSION_GUARD', get_option('recursion_guard'))
|
||||||
|
@ -5,7 +5,7 @@ option('nanbox', type : 'boolean', value : true)
|
|||||||
option('dynamic_modules', type : 'boolean', value : true)
|
option('dynamic_modules', type : 'boolean', value : true)
|
||||||
option('docstrings', type : 'boolean', value : true)
|
option('docstrings', type : 'boolean', value : true)
|
||||||
option('sourcemaps', type : 'boolean', value : true)
|
option('sourcemaps', type : 'boolean', value : true)
|
||||||
option('reduced_os', type : 'boolean', value : true)
|
option('reduced_os', type : 'boolean', value : false)
|
||||||
option('assembler', type : 'boolean', value : true)
|
option('assembler', type : 'boolean', value : true)
|
||||||
option('peg', type : 'boolean', value : true)
|
option('peg', type : 'boolean', value : true)
|
||||||
option('typed_array', type : 'boolean', value : true)
|
option('typed_array', type : 'boolean', value : true)
|
||||||
|
Loading…
Reference in New Issue
Block a user