Available Build Tools (make, etc)? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T00:32:25Zhttp://stackoverflow.com/feeds/question/247350http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/247350/available-build-tools-make-etc7Available Build Tools (make, etc)?Adam Davis2008-10-29T15:54:01Z2009-11-03T22:44:20Z
<p>There's a lot of questions on here regarding various niche build needs (.NET, continuous integration, etc) but, of course, my niche need is different.</p>
<p>Rather than asking a very specific question right now, I'd like a survey of available build tools (such as make, ant, etc) so I can ask a follow up question more intelligently if needed.</p>
<p>In your answer, please include:</p>
<ul>
<li><strong>ONE</strong> build tool</li>
<li>Link to the main page about that tool</li>
<li>If you know some pros and cons (ie, runs on windows with cygwin, or .NET specific, etc) then list some (not required - the name and link are required)</li>
</ul>
<p>If your build tool is already in an answer, comment on it adding pros/cons/limitations/experiences. Feel free to add as many answers as you like as long as they don't already exist - but don't put several build tools into one answer.</p>
<p>Please be aware that if you duplicate answers you may be downvoted - add additional information about a given build in the comments. Ideally these comments will be incorporated into the answer over time.</p>
<p>-Adam</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247367#2473674Answer by Tom Ritter for Available Build Tools (make, etc)?Tom Ritter2008-10-29T15:57:26Z2008-10-29T15:57:26Z<p><strong>GNU Make</strong></p>
<p><a href="http://www.gnu.org/software/make/" rel="nofollow">http://www.gnu.org/software/make/</a></p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247375#2473753Answer by Mnementh for Available Build Tools (make, etc)?Mnementh2008-10-29T15:58:50Z2009-04-15T12:10:17Z<p><a href="http://ant.apache.org/" rel="nofollow">Apache Ant</a></p>
<p>Pro:</p>
<ul>
<li>many task/plugins</li>
<li>runs on many platforms</li>
<li>very mature</li>
<li>is supported by many IDEs, Continuous-Integration-Tools etc.</li>
</ul>
<p>Con:</p>
<ul>
<li>requires Java</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247378#2473787Answer by Tom Ritter for Available Build Tools (make, etc)?Tom Ritter2008-10-29T15:59:46Z2008-10-29T15:59:46Z<p><strong>NAnt</strong></p>
<p><a href="http://nant.sourceforge.net/" rel="nofollow">http://nant.sourceforge.net/</a></p>
<p>Similar to Ant, a build tool for .Net</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247380#2473802Answer by Alex for Available Build Tools (make, etc)?Alex2008-10-29T15:59:51Z2008-10-29T16:01:42Z<p>MSBuild</p>
<p><a href="http://msdn.microsoft.com/en-us/library/wea2sca5(VS.80).aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/wea2sca5(VS.80).aspx</a></p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247394#2473947Answer by jblocksom for Available Build Tools (make, etc)?jblocksom2008-10-29T16:05:45Z2008-10-29T16:05:45Z<p><a href="http://www.scons.org/" rel="nofollow">SCons</a></p>
<p>Build scripts are Python scripts. Supposed to work on Linux, Windows, Mac OS X.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247420#2474204Answer by Ken Liu for Available Build Tools (make, etc)?Ken Liu2008-10-29T16:12:31Z2008-10-29T16:42:10Z<p><a href="http://maven.apache.org/" rel="nofollow">Apache Maven</a></p>
<p>Pros:</p>
<ul>
<li>Automatic dependency management</li>
<li>Utilizes convention over configuration (enforces consistent project directory structures)</li>
<li>Projects that use maven can be built in minutes</li>
<li>Excellent support for standard java/JEE project builds</li>
<li>Works well in a team environment (supports "team" configurations)</li>
<li>Built in release/versioning concepts</li>
<li>Integrates with popular Java IDEs</li>
<li>Growing support in java OSS community</li>
</ul>
<p>Cons:</p>
<ul>
<li>Steep learning curve (esp. compared to Ant)</li>
<li>Poor online documentation (the new <a href="http://www.sonatype.com/community/definitive_guide.html" rel="nofollow">book</a> is excellent though)</li>
<li>Sometimes surprising behavior</li>
<li>Very java-centric</li>
<li>XML configuration driven</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247425#2474254Answer by Ken Liu for Available Build Tools (make, etc)?Ken Liu2008-10-29T16:13:46Z2008-10-29T16:47:36Z<p><a href="http://rake.rubyforge.org/" rel="nofollow">Rake</a></p>
<p>Ruby version of make</p>
<p>Pros:</p>
<ul>
<li>Clean idiomatic ruby syntax</li>
<li>Rake files are written in ruby, so leverages ruby itself rather than proprietary file format or XML</li>
<li>Ruby on Rails tightly integrated with it</li>
</ul>
<p>Cons:</p>
<ul>
<li>Requires ruby, which is not always available</li>
<li>No built-in packaging support/versioning/dependency management (see <a href="http://rubyforge.org/projects/rubygems/" rel="nofollow">rubygems</a>)</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247543#2475432Answer by silverbugg for Available Build Tools (make, etc)?silverbugg2008-10-29T16:48:06Z2008-10-29T16:48:06Z<h2><strong>CruiseControl/CruiseControl .Net</strong></h2>
<p><a href="http://cruisecontrol.sourceforge.net/" rel="nofollow">http://cruisecontrol.sourceforge.net/</a></p>
<p><strong>Pros</strong></p>
<ul>
<li>Can use various build and TDD tools depending on version chosen</li>
<li>Automate when builds happen and what kind - full release build or changed code build</li>
<li>Can automatically run tests (nUnit, jUnit, Fitnesse, etc.) on a build to ensure that all tests still pass when new code is checked into the project.</li>
<li>Integrates with source control</li>
<li>Error reporting and notification when builds fail</li>
</ul>
<p><strong>Cons</strong></p>
<ul>
<li>Error reporting isn't always in a nice pretty to read format</li>
<li>Set up of projects should be well thought out and all projects monitored should use certain patterns to make integration setup more efficient.</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247567#2475674Answer by sanxiyn for Available Build Tools (make, etc)?sanxiyn2008-10-29T16:53:47Z2008-10-29T16:53:47Z<p><a href="http://www.cmake.org/" rel="nofollow">CMake</a></p>
<p>Cross-platform build system generator. It can generate Makefile or project files for Visual Studio, Eclipse CDT, KDevelop, Code::Blocks, etc. Automatic dependency analysis for C, C++, Fortran, Java.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247598#2475984Answer by sanxiyn for Available Build Tools (make, etc)?sanxiyn2008-10-29T17:02:27Z2008-10-29T17:02:27Z<p><a href="http://premake.sourceforge.net/" rel="nofollow">premake</a></p>
<p>Build script generator. Uses Lua to describe the build. It can generate Makefile or project files for Visual Studio, Code::Blocks, CodeLite, SharpDevelop, MonoDevelop, etc. Built-in support for C, C++, C#, including things like resources and ASP.NET. Mono support.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247638#2476381Answer by Ben Scheirman for Available Build Tools (make, etc)?Ben Scheirman2008-10-29T17:15:50Z2008-10-29T17:15:50Z<p><a href="http://code.google.com/p/psake/" rel="nofollow">PSake</a> (pronounced "Sake")</p>
<p>Pros - </p>
<ul>
<li>Powershell</li>
</ul>
<p>Cons -</p>
<ul>
<li>Powershell :)</li>
</ul>
<p>This project is fairly new, looks interesting, and would be very powerful, since it's ".NET at the command line". Unfortunately, I don't know very many people who take the time to learn Powershell.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/247682#2476825Answer by sanxiyn for Available Build Tools (make, etc)?sanxiyn2008-10-29T17:27:50Z2008-10-29T17:27:50Z<p>Jam family.</p>
<ul>
<li><a href="http://www.perforce.com/jam/jam.html" rel="nofollow">Jam</a></li>
<li><a href="http://freetype.sourceforge.net/jam/" rel="nofollow">FTJam</a></li>
<li><a href="http://www.boost.org/doc/tools/jam/index.html" rel="nofollow">BJam</a></li>
</ul>
<p>BJam is based on FTJam, which in turn is based on Jam. Small, fast, portable. Automatic dependency analysis for C, C++. It is not a generator -- it does not generate any Makefile or other build files for secondary build systems.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/309906#3099063Answer by Keith G for Available Build Tools (make, etc)?Keith G2008-11-21T19:33:23Z2008-11-22T03:26:12Z<p><a href="http://FinalBuilder.com" rel="nofollow">FinalBuilder</a></p>
<p>Pros</p>
<ul>
<li>Visual and GUI-oriented unlike ant or make</li>
<li>Lots of built-in actions</li>
<li>Script builder for your own actions</li>
<li>Integrates easily with cc.net</li>
</ul>
<p>Cons</p>
<ul>
<li>Only runs on Windows</li>
<li>Not free, but you get good value for your money</li>
</ul>
<p>They also have a tool called <a href="http://www.automise.com/automise.aspx" rel="nofollow">Automise</a> that does more system-oriented tasks.</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/751533#7515333Answer by Conrad for Available Build Tools (make, etc)?Conrad2009-04-15T12:48:01Z2009-04-15T12:48:01Z<p><a href="http://www.jetbrains.com/teamcity/" rel="nofollow">Team City</a></p>
<h2>Pros</h2>
<ul>
<li><a href="http://www.jetbrains.com/teamcity/features/" rel="nofollow">All available here</a></li>
</ul>
<h2>Cons</h2>
<ul>
<li>Can be memory intensive</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/790667#7906672Answer by Will Robertson for Available Build Tools (make, etc)?Will Robertson2009-04-26T11:22:39Z2009-04-26T11:22:39Z<p><a href="http://www.dsmit.com/cons/" rel="nofollow">cons</a></p>
<p>Pros:</p>
<ul>
<li>Uses Perl, if you like that sort of thing</li>
<li>Haven't used it otherwise <code>:-)</code></li>
</ul>
<p>Cons:</p>
<ul>
<li>Hard to Google for!</li>
<li>Not actively developed?</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/873042#8730422Answer by ferventcoder for Available Build Tools (make, etc)?ferventcoder2009-05-16T18:50:21Z2009-06-08T16:36:37Z<p><a href="http://code.google.com/p/uppercut/" rel="nofollow">UppercuT</a> - </p>
<p>Some good explanations here: <a href="http://ferventcoder.com/category/uppercut.aspx" rel="nofollow">UppercuT</a></p>
<p>Pros -</p>
<ul>
<li>Super easy to get started - Automated Builds as easy as (1) solution name, (2) source control path, (3) company name for most projects!!!</li>
<li>Limited knowledge of NAnt necessary.</li>
</ul>
<p>Cons - </p>
<ul>
<li>Only available for .NET</li>
</ul>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/1377035#13770351Answer by netbuild for Available Build Tools (make, etc)?netbuild2009-09-04T03:15:00Z2009-09-04T03:15:00Z<p><strong>NUBuild</strong> (pronounced "New-Build")</p>
<p>This is the latest and pretty advanced .Net build tool (a very intelligent one) called NUBuild that allows you to build VB.Net and C# projects. Its extremely lightweight, open source and at the same time easy to setup and provides almost no-touch maintenance. </p>
<ul>
<li>Easy to use command line interface</li>
<li>Ability to target all .Net framework version i.e. 1.1, 2.0, 3.0 and 3.5</li>
<li>Supports XML based configuration</li>
<li>Supports both project and file references </li>
<li>Automatically generates the “complete ordered build list” for a given project</li>
<li>Ability to detect and display circular dependencies
Perform parallel build </li>
<li>Ability to handle proxy assemblies</li>
<li>Easily integrated with Cruise-Control.Net continuous integration system</li>
<li>Version management capability</li>
<li>Notification feature</li>
</ul>
<p><a href="http://nubuild.codeplex.com/" rel="nofollow">http://nubuild.codeplex.com/</a></p>
<p>It's best the build tool we have seen so far!</p>
http://stackoverflow.com/questions/247350/available-build-tools-make-etc/1670644#16706441Answer by Nick for Available Build Tools (make, etc)?Nick2009-11-03T22:44:20Z2009-11-03T22:44:20Z<p><a href="http://www.bakefile.org/index.html" rel="nofollow">Bakefile</a></p>
<p>Bakefile is cross-platform, cross-compiler native makefiles generator. It takes compiler-independent description (XML) of build tasks as input and generates native makefile (autoconf's Makefile.in, Visual C++ project, bcc makefile etc.).</p>
<p>Bakefile's task is to generate native makefiles, so that people can keep using their favorite tools. There are other cross-platform make solutions, but they either aren't native and require the user to use unfamiliar tools (Boost.Build) or they are too limited (qmake).</p>