Skip to content

Commit d7d2f7f

Browse files
committed
disable Catch2 signal handling on WASM
1 parent ef29f82 commit d7d2f7f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

conanfile.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,10 @@ def configure(self):
6262
if self.settings.os == 'Linux':
6363
self.options['mimalloc'].override = True
6464

65+
# Disable Catch2 version 3.x.x signaling handling on WASM
66+
if self.settings.os == 'Emscripten':
67+
self.options['catch2'].no_posix_signals = True
68+
6569
self.options['boost'].asio_no_deprecated = True
6670

6771
# Disable building unused boost components

0 commit comments

Comments
 (0)