ngld / knossos

NuKnossos a complete rewrite of the old Knossos mod manager. Nebula also lives here since it's easier to manage both projects in a single monorepo. If you're looking for the old code, go to https://github.com/ngld/old-knossos.
Apache License 2.0
24 stars 2 forks source link

[BUILD ERROR] Could not find static library for multiple dependancies on fedora #39

Open nesper8 opened 2 years ago

nesper8 commented 2 years ago

OS: Fedora 35

nesper8@fedora knossos-updater-v0.0.6  $ ./task.sh configure
//tasks.star:151:9: found inputs but no outputs
//tasks.star:125:29: Running ldconfig -p
//tasks.star:125:29: Skipping unexpected line from ldconfig: 1910 libs found in cache `/etc/ld.so.cache'
//tasks.star:125:29: Skipping unexpected line from ldconfig: Cache generated by: ldconfig (GNU libc) stable release version 2.34
//tasks.star:131:9: Could not find static library for liblzma! Please make sure it's installed.
//tasks.star:131:9: Could not find static library for libzstd! Please make sure it's installed.
//tasks.star:131:9: Could not find static library for zlib! Please make sure it's installed.
Done

I do have lzma, zstd and zlib installed

ngld commented 2 years ago

Sorry for the late reply.

You can either run ./task.sh configure static_deps=false to link against the dynamic libraries or run yum install -y xz-{devel,static} libzstd-{devel,static} zlib-{devel,static} to install the necessary packages.