We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5940d4a commit 780bd24Copy full SHA for 780bd24
2 files changed
.github/workflows/ci.yaml
@@ -151,9 +151,6 @@ jobs:
151
152
emscripten:
153
strategy:
154
- matrix:
155
- include:
156
- - emscripten_version: 3.1.27
157
fail-fast: false
158
runs-on: ubuntu-latest
159
steps:
CMakeLists.txt
@@ -81,12 +81,8 @@ endif()
81
# Flags
82
################################################################
83
if(EMSCRIPTEN)
84
-
85
86
87
- set(EMS
88
- "SHELL: -s EXTRA_EXPORTED_RUNTIME_METHODS=['FS','PATH','loadDynamicLibrary']"
89
- )
+ # extra flags to ensure runtime methods are exported
+ set(EMS"SHELL: -s EXTRA_EXPORTED_RUNTIME_METHODS=['FS','PATH','loadDynamicLibrary']")
90
target_compile_options(xplugin_host INTERFACE ${EMS})
91
target_link_options(xplugin_host INTERFACE ${EMS})
92
0 commit comments