Python cryptography, Rust, and Gentoo
Python cryptography, Rust, and Gentoo
Posted Feb 12, 2021 11:14 UTC (Fri) by LtWorf (subscriber, #124958)In reply to: Python cryptography, Rust, and Gentoo by roc
Parent article: Python cryptography, Rust, and Gentoo
You mean a README file with a list of dependencies? I'm sure people on a certain distribution know how to use their package manager.
If they don't know, they won't be compiling your software anyway, because they don't know how to install a compiler.
> For distros that don't package the library (or package a version of it that's older than I need), providing instructions to build and install that library manually, making my software even harder to build
Users of stable distributions are familiar with the issue.
> Making sure my software builds and runs with a range of library versions packaged by different distros and distro versions, potentially packaged in different ways with different directory layouts etc across distros.
That is incentive to:
1. Do not depend on amateur libraries that change API
2. Use autotools and let it figure out all this stuff
> On platforms like Windows
There are no package managers on windows. So that is a completely different situation. But anyway you won't be using the same binary on linux and windows.
