We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pthread
1 parent 6d06a8b commit 1d92260Copy full SHA for 1d92260
setup.py
@@ -64,7 +64,8 @@ def blosc_extension():
64
define_macros = []
65
66
# ensure pthread is properly linked on POSIX systems
67
- if os.name == 'posix':
+ # and not when compiling to WASM.
68
+ if os.name == 'posix' and "PYODIDE" not in os.environ:
69
extra_compile_args.append('-pthread')
70
extra_link_args.append('-pthread')
71
0 commit comments