You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In my build scripts, pkg-config could not find the dependencies in library_install_prefix as expected. It seems like pyodide-build tries to configure pkg-config here:
I think it is necessary to set EM_PKG_CONFIG_PATH. This can be done in addition to PKG_CONFIG_LIBDIR. I'm unsure if the existing PKG_CONFIG_LIBDIR has any observable effect.
The text was updated successfully, but these errors were encountered:
Problem
In my build scripts,
pkg-config
could not find the dependencies inlibrary_install_prefix
as expected. It seems like pyodide-build tries to configurepkg-config
here:pyodide-build/pyodide_build/buildpkg.py
Lines 552 to 554 in 4805d73
But in a call to
emconfigure ./configure ...
emscripten will override this variable.Proposed solution
I think it is necessary to set
EM_PKG_CONFIG_PATH
. This can be done in addition toPKG_CONFIG_LIBDIR
. I'm unsure if the existingPKG_CONFIG_LIBDIR
has any observable effect.The text was updated successfully, but these errors were encountered: