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
At least for me, I was missing the libelf package. It seems the 'regular' package was removed from pacman last year, but there is another one hosted that worked for me: mingw-w64-x86_64-libelf.
I also had lots of issues with missing SSL certificate from meson wrap while trying to download libdwarf (was able to visit wrapdb.mesonbuild.com and also download via curl, so some kind of issue specific to whatever http tool meson wrap is using), but it's possible to download the tarball and then remove the source_url and source_hash of the dwarf subproject to build with the externally downloaded file.
The text was updated successfully, but these errors were encountered:
libelf is the name of upstream library, MSys2 is composed of several toolchains and each has it's own ecosystem of packages. They are differentiated by prefix. In case of libelf:
mingw-w64-x86_64-libelf - libelf for MinGW64 (as you found out, this is the version you want)
I also had lots of issues with missing SSL certificate from meson wrap
Apparently MinGW64 maintains it's own certificate database and if not update it stops to recognize certificate for that site (probably others too). You can fetch updated database by installing (updating) package mingw-w64-x86_64-ca-certificates (note toolchain prefix also used here).
At least for me, I was missing the
libelf
package. It seems the 'regular' package was removed from pacman last year, but there is another one hosted that worked for me:mingw-w64-x86_64-libelf
.I also had lots of issues with missing SSL certificate from meson wrap while trying to download libdwarf (was able to visit wrapdb.mesonbuild.com and also download via curl, so some kind of issue specific to whatever http tool meson wrap is using), but it's possible to download the tarball and then remove the
source_url
andsource_hash
of the dwarf subproject to build with the externally downloaded file.The text was updated successfully, but these errors were encountered: