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.
1 parent cd8c953 commit 4bfaa63Copy full SHA for 4bfaa63
lib/Interpreter/CMakeLists.txt
@@ -115,7 +115,10 @@ endif()
115
)
116
117
if(EMSCRIPTEN)
118
- # Read the undefined symbols from the text file
+ # FIXME: When dynamically linking the Emscripten shared library to the
119
+ # unit tests main_module you get errors due to undefined symbols. The reading of the file
120
+ # below into a SYMBOLS_LIST variable is a temporary workaround that exports the undefined
121
+ # symbols from the shared library, until it can be determined why they are not being exported already.
122
file(READ "${CMAKE_SOURCE_DIR}/lib/Interpreter/exports.ld" SYMBOLS_LIST)
123
124
# Replace newlines with spaces
0 commit comments