Gyeongjae Choi

Results 674 comments of Gyeongjae Choi

I see. That's good to know. Maybe there is not much we can do for now on this issue then. Next year, we will update the Emscripten version, and the...

``` Failed to load lib /tmp/cibw-run-zxgvrvqf/cp312-pyodide_wasm32/venv-test/lib/python3.12/site-packages/spiceypy/cyice/cyice.so Error: Didn't expect to load any more file_packager files! ``` This often means that the shared library is not built correctly. If you can...

Hi @AndrewAnnex, I checked the wheel you attached and the problem is that the `cyice.so` is linked to `libcspice.wasm` but it does not set the [rpath correctly](https://en.wikipedia.org/wiki/Rpath). Since cyice.so is...

I used `pyodide auditwheel`. If you use the latest version of `auditwheel-emscripten`, the `pyodide auditwheel show` will show the rpath if it exists ```sh pyodide auditwheel show --with-runtime-paths ``` If...

BTW, if you have any feedback using `pyodide auditwheel`, please let me know. I maintain that package and am using it for debugging packages most of the time.

> @ryanking13 what would you expect the output for auditwheel with '--with-runtime-paths' to look like for a correct build? I am working through how to set this properly with cmake,...

> I am wondering if scikit-build-core is doing something sub-optimal here. Pyodide's docs seem to also imply setting the rpath is not supported (https://pyodide.org/en/latest/development/abi.html#runtime-library-loading-path). Oh, that document is outdated, we...

Hi @AndrewAnnex thanks for the detailed report. ``` RuntimeError: null function or function signature mismatch ``` This is a very common problem in Pyodide and WebAssembly, but it is also...

@Drranny Sure, assigned to you. Thanks!

Sure. I talked with @Drranny offline, and asked her to investigate the issue related to runtime detection in Next.js (https://github.com/pyodide/pyodide/issues/3893). If we can solve that issue without overriding the runtime,...