Why are we still using compiler command lines? - Stack Overflow most recent 30 from stackoverflow.com2009-12-08T05:13:39Zhttp://stackoverflow.com/feeds/question/100353http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines12Why are we still using compiler command lines?Cody Brocious2008-09-19T07:56:03Z2008-10-26T18:14:48Z
<p>I've been designing a compiler framework (targeting .NET) for a while now and I've been thinking more and more about deprecating the command line interface. A lot of my compiler's flexibility comes from the ability to define custom pipeline elements (to handle DSLs, macros (which have their own DSL to define), etc) and the command line ends up very verbose and tedious. This also makes it more difficult to design a NAnt task that will expose all of the functionality in a simple way.</p>
<p>The alternative I've been toying around with is actually making the NAnt task load the compiler module and call it directly, so the command line is a nonissue. This will remove the overhead of invoking the compiler -- a non-negligible amount of time when you're doing a lot of compilation, as it has to initialize for each and every compilation -- and allow you to more easily define custom pipelines.</p>
<p>My question is this: Why hasn't this been done before? It seems a natural progression to more tightly integrate the compiler with the build system. Assuming you keep the command line interface around, there are few downsides and a lot of benefits. For that matter, <b>has</b> anyone done this already?</p>
<p>Edit: To clarify, I'm not proposing the complete abolition of the compiler command line interface, just treating it as the legacy interface.</p>
<p>Further edit: A lot of people have responded in favor of the command line interface, which has led me to think more about what can be done to improve it. Is there a reason why accepting basic info -- output filename, language to compile with, possibly source files (if there aren't custom steps to be put onto their compilation), etc -- over the command line and then taking pipeline info and such over STDIN would be an issue? This seems like a nice middle ground that would be easy to use from most any existing build system.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100379#1003790Answer by Einar for Why are we still using compiler command lines?Einar2008-09-19T08:02:38Z2008-09-19T08:02:38Z<p>One thing that immediately springs to mind is scripting/automation. I'm not very familiar with the .NET world, but I'd imagine that not everyone wants to use NAnt, but they may still want to be able to create scripts that include compilations (e.g., nightly builds). </p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100383#1003834Answer by Chris Charabaruk for Why are we still using compiler command lines?Chris Charabaruk2008-09-19T08:03:21Z2008-09-19T08:03:21Z<p>I'd say the command line interface is so ubiquitous and will remain so because of the many build systems that rely on it. So many projects rely on makefiles or scripts and batches to build and test, that considering alternative ways of driving the compilers are rarely even considered. Personally, I've always been a fan of command-line building rather than hiding things in the IDE.</p>
<p>By the way, you might want to take a look at MSBuild. Don't quote me, I might be wrong, but what it does sounds kind of similar to what you'd like to do via NAnt.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100385#1003852Answer by skymt for Why are we still using compiler command lines?skymt2008-09-19T08:03:43Z2008-09-19T08:29:20Z<p>Tightly coupling the compiler with the build system seems like a good idea, as long as you're happy with the build system in question. If a coder wants to use your compiler with, say, SCons, an in-house script, or even traditional make, it doesn't work out so well.</p>
<p>Another thing to think about is the initial mental overhead. If someone wants to try out your compiler, he doesn't necessarily want to learn your build system at the same time. Software that's easy to <em>start using</em> has a greater chance to catch on: just look at Rails.</p>
<p><em>Edit:</em> Your new proposal to take extra information over STDIN seems reasonable. Just be very careful to make a clear, consistent distinction between the kinds of options set on the command line versus those piped in later. This is an API issue, not a UI issue, so any future changes would be expensive.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100386#1003861Answer by Chris Jester-Young for Why are we still using compiler command lines?Chris Jester-Young2008-09-19T08:03:58Z2008-09-19T08:22:51Z<p>I believe the Java compiler already has a non-command-line interface (<code>com.sun.tools.javac</code>) which Ant uses for compilation. It's neat, and should be supported by more compilers.</p>
<p>ETA: Re pipeline: I think a command-line option that specifies the use of such parameter-passing over stdin would be very helpful, especially in getting over the command-line length limit. And you can use it to send non-textual data too.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100390#1003900Answer by François for Why are we still using compiler command lines?François2008-09-19T08:05:23Z2008-09-19T08:05:23Z<p>Some like the possibility to compile from a command file (or shell script or equivalent) without needing being in another application, be it an IDE or build tool. Such that the Delphi compiler comes with a command line compiler and another integrated within the IDE. They both share the same source code though.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100397#1003972Answer by Milan Babuškov for Why are we still using compiler command lines?Milan Babuškov2008-09-19T08:06:31Z2008-09-19T08:06:31Z<p>If you provide ability for decent scripting of tasks, I'd go with GUI-only approach. However, I'm not even sure it's possible. How could you possibly cover everything and anything that some moderately complex batch file can do?</p>
<p>I can invoke wget or svn to fetch me some files or code before the build. I can invoke command line e-mail tool to send me the results, and a sceenshot :) I can also invoke InnoSetup to build the setup.exe and command line FTP client to upload the resulting binary package to my release server. But, this example is just a tip of the iceberg. </p>
<p>To state simply: build is not always initiated by the human user.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100428#1004282Answer by edg for Why are we still using compiler command lines?edg2008-09-19T08:12:09Z2008-09-19T08:12:09Z<p>For complex developer-oriented toolsets it is poor design to remove options.</p>
<p>That kind of approach leads to a monolithic application that railroads the developer into following a handful of predefined processes.</p>
<p>Best to keep the tools loosely coupled and focus on making each tool robust and with a well-defined interface.</p>
<p>That way, the total can be greater than the sum of its parts.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100461#1004610Answer by David L Morris for Why are we still using compiler command lines?David L Morris2008-09-19T08:19:56Z2008-09-19T08:19:56Z<p>"My question is this: Why hasn't this been done before? It seems a natural progression to more tightly integrate the compiler with the build system. Assuming you keep the command line interface around, there are few downsides and a lot of benefits. For that matter, has anyone done this already?"</p>
<p>This has been done before. Try separating the command line VB6 from the Link stage. (It can be done by nasty hacks, that is a whole other story). And it was bad news (well for me anyway). </p>
<p>With a command line interface you can add other object modules and resources. </p>
<p>A command line interface provides a "standard" interface that any and all systems can interact with.</p>
<p>With a command line you can write batch files and make files and and have complete systems builds that are unattended, and zipped and/or copied and whatever else without further interaction.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100521#1005211Answer by Brian for Why are we still using compiler command lines?Brian2008-09-19T08:38:16Z2008-09-19T11:25:28Z<p>It has been done before. For instance there are currently some <a href="http://gcc.gnu.org/wiki/IncrementalCompiler" rel="nofollow">plans</a> to move gcc in that direction. One of the main advantages to it is to give more flexible interface to the compiler's state, making it useful for editors and IDEs who don't want to reimplement half a C compiler just to give useful source introspection.</p>
<p>[Edit:] <a href="http://www.spindazzle.org/greenblog/index.php?/archives/74-Interview-GCC-as-an-incremental-compile-server.html" rel="nofollow">Here's</a> an interview discussing this, giving some more details about the benefits of the approach, and possibilities it may enable.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/100550#10055015Answer by phjr for Why are we still using compiler command lines?phjr2008-09-19T08:47:21Z2008-10-26T18:14:48Z<p>Some answers here were in the tone that <strong>we're stuck</strong> with command line, and that's why. <strong>I disagree.</strong> If we pass compiler options via command line (XML configuration file, anyone?), then almost every standard tool can interface with the compiler.</p>
<p>We can easier <strong>integrate</strong> different things. Different compilers on different platforms may have different command line parameters for disabling warnings etc. but passing file names etc. is basically the same. A sophisticated config file probably wouldn't.</p>
<p>Command line is also more <strong>orthogonal</strong> than GUI tools (Pragmatic Programmer book tells really well why, and why it's so important). With shell you can accomplish things it wasn't explicitly designed to do. With GUI you usually have to explicitly build support for something, if you want it to be possible.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/101031#1010311Answer by Rob for Why are we still using compiler command lines?Rob2008-09-19T10:45:24Z2008-09-19T10:45:24Z<p>I have an automated build process which involves many different steps: compiling, obfuscation, signing, zipping, and backup. Command line support is crucial in all of these.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/111664#1116640Answer by Thorsten79 for Why are we still using compiler command lines?Thorsten792008-09-21T18:40:17Z2008-09-21T18:40:17Z<p>I'm using Eclipse for both C++ and Java, and quite happy with the integration. The command line becomes a list of issues to fix where I can reach each problematic piece of code by a double click.</p>
http://stackoverflow.com/questions/100353/why-are-we-still-using-compiler-command-lines/176867#17686712Answer by keysersoze for Why are we still using compiler command lines?keysersoze2008-10-07T01:08:41Z2008-10-07T01:08:41Z<p>I'm surprised nobody has mentioned <a href="http://en.wikipedia.org/wiki/Unix_philosophy" rel="nofollow">the Unix philosophy</a>.</p>
<blockquote>
<p>This is the Unix philosophy: Write programs that do one thing and do it well. Write programs to work together. Write programs to handle text streams, because that is a universal interface.</p>
</blockquote>
<p>Obviously the output of the compiler won't be text, it'll be object code. However, it's nice that the inputs to it (the command line arguments, and the source code) are. That allows the "programs to work together" part of the unix philosophy to function so ubiquitously. Want to make a program to auto-generate source code? Sure, use any language you like, as long as it can write text files. Want to make a tool (ie: build system) that runs the compiler? All it needs to do is generate text.</p>
<p>By the same token, it's nice to have all the other programs in <a href="http://en.wikipedia.org/wiki/GNU_Binutils" rel="nofollow">binutils</a> produce text as their output. I've had to script nm and objdump on more than one occasion. In one case I was able to detect configuration problems automatically as part of the build process, that previously were only detectable at runtime on an embedded system. Detecting the problems at runtime wasted 20 minutes of an engineers time if they knew what they were doing. If they didn't, it'd waste hours of their time before they showed the problem to someone who'd seen it before.</p>