aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2020-11-09 19:08:48 +0200
committerJussi Pakkanen <jpakkane@gmail.com>2020-11-09 23:06:52 +0200
commitdffd66e0ff2d3c91003fc4c361382c473ed11cfa (patch)
tree77fc3e3dc2dcd187cde1f7afa499802b97ba432d /mesonbuild
parent5dd174c60b209aff2eef8fa38c12cc8a3c6753db (diff)
downloadmeson-dffd66e0ff2d3c91003fc4c361382c473ed11cfa.zip
meson-dffd66e0ff2d3c91003fc4c361382c473ed11cfa.tar.gz
meson-dffd66e0ff2d3c91003fc4c361382c473ed11cfa.tar.bz2
Fix WASM thread count option. Closes #7921.
Diffstat (limited to 'mesonbuild')
-rw-r--r--mesonbuild/compilers/mixins/emscripten.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/compilers/mixins/emscripten.py b/mesonbuild/compilers/mixins/emscripten.py
index 87bc40c..cd18b35 100644
--- a/mesonbuild/compilers/mixins/emscripten.py
+++ b/mesonbuild/compilers/mixins/emscripten.py
@@ -50,7 +50,7 @@ class EmscriptenMixin(Compiler):
def thread_link_flags(self, env: 'Environment') -> T.List[str]:
args = ['-s', 'USE_PTHREADS=1']
- count = env.coredata.compiler_options[self.for_machine]['{}_thread_count'.format(self.language)].value # type: int
+ count = env.coredata.compiler_options[self.for_machine][self.language]['thread_count'].value # type: int
if count:
args.extend(['-s', 'PTHREAD_POOL_SIZE={}'.format(count)])
return args
@@ -58,7 +58,7 @@ class EmscriptenMixin(Compiler):
def get_options(self) -> 'coredata.OptionDictType':
opts = super().get_options()
opts.update({
- '{}_thread_count'.format(self.language): coredata.UserIntegerOption(
+ 'thread_count': coredata.UserIntegerOption(
'Number of threads to use in web assembly, set to 0 to disable',
(0, None, 4), # Default was picked at random
),