mirror of https://github.com/pyodide/pyodide.git
Fix undefined symbol error when loading shared lib (#3193)
This commit is contained in:
parent
00d0f347c8
commit
393988f601
|
@ -92,6 +92,9 @@ substitutions:
|
|||
a new option `checkIntegrity`. If set to False, integrity check for Python Packages
|
||||
will be disabled.
|
||||
|
||||
- {{ Fix }} Fix undefined symbol error when loading shared library
|
||||
{pr}`3193`
|
||||
|
||||
- {{ Fix }} Shared libraries with version suffix are now handled correctly.
|
||||
{pr}`3154`
|
||||
|
||||
|
|
|
@ -415,6 +415,7 @@ async function loadDynlib(lib: string, shared: boolean) {
|
|||
nodelete: true,
|
||||
global: loadGlobally,
|
||||
fs: libraryFS,
|
||||
allowUndefined: true,
|
||||
});
|
||||
} catch (e: any) {
|
||||
if (e && e.message && e.message.includes("need to see wasm magic number")) {
|
||||
|
|
Loading…
Reference in New Issue