Quote:
Originally Posted by terp4life2001
Hello everyone,
My company has a set of utilities that need to be built and released for multiple (Linux) distributions on multiple platforms. Due to staffing constraints I am setting up a build system to accommodate this task; however I don't have any build server experience.
I ideally we would have one set of libs and one set of exes that would work on all of the targets, but I don't think that will be a possibility because each target may have different library versions.
|
In general developers do not try to provide packages for a wide range of distributions and platforms. The few that do (Open Office for example) try to provide a few tar.gz packages that install a binary.
Most developers start out by providing a package for the distribution and platform that they do development work on. For everybody else they provide a source tar.gz which uses ./configure, make, and make install.
If you can talk a distribution into including your software on their install CDs then the distribution will compile and package your software for each release of their software and for every platform that they support. The way that you achieve universal distribution and platform support is by creating an application that is popular enough that every distribution thinks that it is worthwhile to include it in their install CDs.
---------------------
Steve Stites