Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why do we need third party build tools?

Tags:

build

Why do we need third party build tools like this one?

Don't we have build facilities integrated into our IDEs?

What do these tools actually do that is not provided in the IDEs?

like image 756
user366312 Avatar asked Oct 19 '09 10:10

user366312


2 Answers

The ability to run a build server which doesn't have to start an IDE in order to build a product?

The ability to have a standardized build so that a developer doesn't have to install another IDE just to be able to build some third party code? Think about the Open Source world - you don't want to force all the developers on a project to use the same IDE, nor do you want to force any user who wants to build from source to install a whole IDE just for the sake of that. It's a lot easier to run Ant than to keep track of a whole bunch of IDEs.

What's good is that IDEs such as Eclipse support 3rd party build systems like Ant - that's the way it should work IMO, rather than tailoring the build to one specific IDE.

The .NET world has a slightly different take on this, where MSBuild is part of the framework, but is also the build format used by Visual Studio. (Personally I like to use NAnt for control of the build process, and MSBuild to do the actual compilation stage.)

like image 58
Jon Skeet Avatar answered Oct 07 '22 13:10

Jon Skeet


Adding to Jon's answer concerning the build server - ensuring that the build can be done cleanly on a machine that doesn't have e.g. trial versions of components, and various developer tools, so the end users machine won't need those either.

like image 42
Damien_The_Unbeliever Avatar answered Oct 07 '22 13:10

Damien_The_Unbeliever