libs version
Hello. Can I find out the versions of all dependency libraries? https://github.com/paladin-t/bitty/tree/main/lib The problem is that I'm building for a rare architecture and I have to build everything myself and I can't use the binary versions of the library.
I have to build everything myself and I can't use the binary versions of the library.
Hi,
All the dependency libraries are open-source and distributed as source code, you can do so as you like. You'll find version information in the README, etc. respectively for each lib.
In addition, you may need to get some of the following gnu/linux libs, which works for me on a default setup of Ubuntu 18.04.6 LTS.
sudo apt install libgtk-3-dev
sudo apt install libflac-dev libfluidsynth-dev libmodplug-dev libmpg123-dev libopus-dev libopusfile-dev
sudo apt install build-essential libasound2-dev libaudiofile-dev libdbus-1-dev libdirectfb-dev libfreetype6-dev libgl1-mesa-dev libglu1-mesa-dev libogg-dev libopenal-dev libpng-dev libpulse-dev libudev-dev libusb-dev libvorbis-dev libts-dev xorg-dev zlib1g-dev libwayland-dev
I understand that all dependency libraries are open source, but I need specific versions of these libraries. I tried to build it a few months ago and had a final linking problem due to unsuitable library versions. It may be possible in the future to build dependency libraries from source, as an option in cmake. I will try to build all the libraries again by taking the versions from ubuntu.