knossos icon indicating copy to clipboard operation
knossos copied to clipboard

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

Open nesper8 opened this issue 3 years ago • 1 comments

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

nesper8 avatar Jan 10 '22 17:01 nesper8

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.

ngld avatar Mar 22 '22 14:03 ngld