It seems someone has prebuilt rlimit for several platforms and installs them as binaries as part of a python package. It should go without saying this is unconventional. Not to mention, it obviously doesn't cover every platform. The 4 major BSD systems for starters.
Why isn't rlimit being built from source by the module priority to installation?
I found this issue because the build failed sanity checks -- e.g. there are libraries linked by these rlimit libraries that obviously are not present on the host system.
This is not a good approach. If you need an rlimit binary, then build it in real time so it's guaranteed to be available for the host platform.
I've honestly never seen this approach before.
It seems someone has prebuilt rlimit for several platforms and installs them as binaries as part of a python package. It should go without saying this is unconventional. Not to mention, it obviously doesn't cover every platform. The 4 major BSD systems for starters.
Why isn't rlimit being built from source by the module priority to installation?
I found this issue because the build failed sanity checks -- e.g. there are libraries linked by these rlimit libraries that obviously are not present on the host system.
This is not a good approach. If you need an rlimit binary, then build it in real time so it's guaranteed to be available for the host platform.
I've honestly never seen this approach before.