diff options
author | Philip Chimento <philip.chimento@gmail.com> | 2021-02-13 14:29:47 -0800 |
---|---|---|
committer | Philip Chimento <philip.chimento@gmail.com> | 2021-03-04 20:58:00 -0800 |
commit | c3bd72d86f3f6c83d9c378d98684d58cd07d5f6f (patch) | |
tree | 8611854f8cb74ba8c64c5c6052d37bd8f3fa82f9 /meson_options.txt | |
parent | f202b5fdfb60358c934688774a166c0988fd17e5 (diff) | |
download | gjs-c3bd72d86f3f6c83d9c378d98684d58cd07d5f6f.tar.gz |
build: Use Meson built-in setting for RTTI
There's no need to implement our own setting for RTTI, since Meson already
has a built-in setting. We just set the default to false, since that's
also the default for SpiderMonkey.
Diffstat (limited to 'meson_options.txt')
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt index 70890583..081fac3d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -20,8 +20,6 @@ option('systemtap', type: 'boolean', value: false, description: 'Include systemtap trace support (requires -Ddtrace=true)') option('bsymbolic_functions', type: 'boolean', value: true, description: 'Link with -Bsymbolic-functions linker flag used to avoid intra-library PLT jumps, if supported; not used for Visual Studio and clang-cl builds') -option('spidermonkey_rtti', type: 'boolean', value: false, - description: 'Needs to match SpiderMonkey\'s config option') option('skip_dbus_tests', type: 'boolean', value: false, description: 'Skip tests that use a DBus session bus') option('skip_gtk_tests', type: 'boolean', value: false, |