Setting up a Programming Environment in Linux - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T02:14:55Zhttp://stackoverflow.com/feeds/question/222471http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux16Setting up a Programming Environment in LinuxStrider2008-10-21T16:15:36Z2009-01-09T21:44:17Z
<p>I recently started using Linux as my primary OS. What are the tools that I will need to set up a complete programming environment in Linux for C and C++?</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222486#2224861Answer by warren for Setting up a Programming Environment in Linuxwarren2008-10-21T16:17:53Z2008-10-21T16:17:53Z<p>The simplest of answers is an editor (take your pick - at least one is already on there) and gcc/g++.</p>
<p>If you want an IDE, there are a slew of questions related to that on SO :) (including this one <a href="http://stackoverflow.com/questions/24109/c-ide-for-linux">http://stackoverflow.com/questions/24109/c-ide-for-linux</a>).</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222490#2224904Answer by mgb for Setting up a Programming Environment in Linuxmgb2008-10-21T16:18:18Z2008-10-21T16:18:18Z<p>Vi (or emacs), gcc , make<br />
Tradiationally unix development is more commandline than ide. There are very good IDEs, the main ones are probably <a href="http://www.eclipse.org/home/categories/languages.php" rel="nofollow">eclipse</a> and <a href="http://www.kdevelop.org" rel="nofollow">kdevelop</a></p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222494#22249415Answer by swilliams for Setting up a Programming Environment in Linuxswilliams2008-10-21T16:18:46Z2008-10-21T16:18:46Z<p>Standard stuff:</p>
<ul>
<li>The compiler tools, gcc, gdb, etc.</li>
<li>Some sort of editor/IDE (emacs, vim, eclipse)</li>
<li>Profiling tools</li>
<li>Source Control (SubVersion, git, etc)</li>
<li>Language specific tools, like easy_install for python (you said C/C++, but the same goes for everything)</li>
<li>A web server maybe? Apache, Lighttpd, nginx</li>
<li>Any libraries you'll be using. Are you doing kernal hacking? Driver development? opengl?</li>
</ul>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222513#2225132Answer by coppro for Setting up a Programming Environment in Linuxcoppro2008-10-21T16:22:25Z2008-10-21T16:22:25Z<p>It depends on your definition of "Complete programming environment", and whether you are using C, C++, or both (C/C++ is an awful term that shouldn't be used. Either it's C, or C++).</p>
<p>If you are looking for an IDE, <a href="http://www.eclipse.org/cdt/" rel="nofollow">Eclipse/CDT</a> is the most highly-recommended one from my experience (I don't actually use any IDE, so I can't offer first-hand advice).</p>
<p>If you can cope with command-line control (and in the end I find it makes things easier to do and doesn't take a whole lot of getting used to), a simple text editor with highlighting will suffice. I prefer KATE (part of KDE), as it features a built-in terminal as well as many features you would expect from an editor inside an IDE, like code folding and regex search/replace.</p>
<p>Many people also recommend Vim or Emacs, both of which are probably available through your distro's repositories. (Eclipse is probably available too, but in my experience the CDT is confusing to install via packages. YMMV). They are both ancient editors; and there is a powerful holy war between the two, so I won't get involved.</p>
<p>Your compiler should probably be GCC - on a Debian system, installing the g++ package as well as build-essential should be enough to get C++ going (build-essential should contain the gcc package required for C development). Whatever your distro, GCC is probably easily available or else already on your system.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222524#2225243Answer by Jacob B for Setting up a Programming Environment in LinuxJacob B2008-10-21T16:27:28Z2008-10-21T16:27:28Z<p>Seconding swilliams, I'd say the basics are:</p>
<ul>
<li>an editor or IDE (I use vim),</li>
<li>a compiler (almost certainly gcc)</li>
<li>make, or maybe some other similar tool like ant if you want</li>
<li>a debugger (almost certainly gdb)</li>
<li>source control (I use subversion)</li>
<li>Standard unix utilities like grep and diff, but you have those already</li>
</ul>
<p>Other than that, I'd say install as you go. Linux is more about little utilities that each do one thing than monolithic development environments that do everything. So if you find yourself needing something, you can always just install it, be that thing a memory profiler, a documentation generator, a bigger/smaller/more different editor, et cetera, et cetera.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222535#2225351Answer by lefticus for Setting up a Programming Environment in Linuxlefticus2008-10-21T16:29:36Z2008-10-21T16:29:36Z<p>Kdevelop is a well regarded and well written IDE for Linux, installing it <em>should</em> get you every other tool you might want to develop with installed as well and and IDE to go with it.</p>
<p>By "every other tool" I mean gcc, grep, diff, autoconf et al should be grabbed by the package manager and installed at the same time, but I could be wrong. I don't have a standard distro on hand to test that with.</p>
<p>Personally, I use vim, but I have used kdevelop in the past. </p>
<p>vim/vi is handy because you know that some form of vi is <em>always</em> available on <em>every</em> unix platform.</p>
<ul>
<li>I have to correct my post. I just looked at the package requirements for kdevelop on ubuntu... it does NOT appear to require gcc and install it automatically</li>
</ul>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222714#2227144Answer by BubbaT for Setting up a Programming Environment in LinuxBubbaT2008-10-21T17:22:12Z2008-10-21T17:22:12Z<p>Among others you should also have gprof and valgrind ( or something in it's class ).</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222721#2227211Answer by mwilliams for Setting up a Programming Environment in Linuxmwilliams2008-10-21T17:25:33Z2008-10-21T17:25:33Z<p>What distribution are you running?</p>
<p>In Ubuntu or any Debian based distribution you can issue the following command to install all the necessary tools.</p>
<pre><code>sudo apt-get install build-essentials
</code></pre>
<p>From there you can install your SCM solution of choice and an IDE if you prefer or just use your favorite text editor.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222739#2227391Answer by DavidG for Setting up a Programming Environment in LinuxDavidG2008-10-21T17:36:25Z2008-10-21T17:36:25Z<p>If you want something very easy to use, with ability to import visual studio projects, and a feel much like VS, give <a href="http://www.codeblocks.org" rel="nofollow">Codeblocks</a> a try. Its quick ( since its not Java based ) and in general works well.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222821#2228211Answer by Antonio Haley for Setting up a Programming Environment in LinuxAntonio Haley2008-10-21T18:00:06Z2008-10-21T18:00:06Z<p>Another great utility that you can use are *nix man pages. Each function in the C library has an associated man page.</p>
<p>For example:</p>
<p>man printf</p>
<p>man strncpy</p>
<p>...</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222855#2228550Answer by Mdr for Setting up a Programming Environment in LinuxMdr2008-10-21T18:08:40Z2008-10-21T18:08:40Z<p>I took an old windows laptop with a dead hard drive and
replaced the hard drive then installed Ubuntu (linux / debian
all in one handy release) on it. I had to burn the ubuntu
installation files onto a cd first on another working computer.</p>
<p>Here's where I got my linux from (complete with desktop gui, very
easy to install, lots of programs to use, it was my first linux
but not my first unix):</p>
<p><a href="http://www.ubuntu.com/getubuntu/download" rel="nofollow">http://www.ubuntu.com/getubuntu/download</a></p>
<p>Then i installed Netbeans for my integrated development environment (IDE)
altough I am using it for java -- but it comes with c++ support as shown below:</p>
<p><a href="http://www.netbeans.org/features/cpp/" rel="nofollow">http://www.netbeans.org/features/cpp/</a></p>
<p>I also installed mySql, you didn't ask, but that is another key component
that completes my development environment.</p>
<p>Good luck to you.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/222900#2229000Answer by rmeador for Setting up a Programming Environment in Linuxrmeador2008-10-21T18:19:19Z2008-10-21T18:19:19Z<p>On most distros, everything you need will be installed by default (very few don't include gcc, they all include some kind of editor). I generally do my development in Vim (or gVim, which is the graphical version -- the best of both worlds). For those times when I'm feeling the need for a "real" IDE, Eclipse with the Vim plugin is really nice. It's almost like working in Vim, except you get the Eclipse stuff -- again, best of both worlds. The Vim plugin for Eclipse that I'm using is not free, however :( I believe there is a free one, but the last time I tried it, it wasn't very good.</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/223076#2230760Answer by Jonathan Turner for Setting up a Programming Environment in LinuxJonathan Turner2008-10-21T19:05:48Z2008-10-21T19:05:48Z<p>Personally I use Ubuntu w/ Eclipse CDT. Eclipse is what most people might think of as a Java IDE, but CDT is a set of extensions that really tune it for C/C++ development. It's smart enough to figure out what toolset to use (MacOSX GCC vs Linux GCC, for example).</p>
<p><a href="http://www.eclipse.org/cdt/" rel="nofollow" title="Eclipse CDT website">Eclipse CDT Website</a></p>
<p>For best results, currently the 6.0 JRE for Ubuntu seems to have problems with recent Eclipse versions, so what I did was remove the 6.0 JRE and run:</p>
<blockquote>
<p>apt-get install build-essential
sun-java5-jre sun-java5-bin</p>
</blockquote>
<p>Then grab the latest Eclipse from the website, unpack it in a directory. </p>
<p>As a final touch, edit the eclipse.ini file that comes with Eclipse and add this line to it:</p>
<blockquote>
<p>-XX:CompileCommand=exclude,org/eclipse/core/internal/dtree/DataTreeNode,forwardDeltaWith</p>
</blockquote>
<p>This will further stabilize the app, making it as rocksolid as Windows or Mac. </p>
<p>If you prefer commandline tools over GUI tools, some ones I use regularly:</p>
<ul>
<li><a href="http://cmake.org/" rel="nofollow">CMake</a> -- Portable build tool. It's easy to use and can output a variety of formats like Makefiles or Visual Studio files.</li>
</ul>
<blockquote>
<p>apt-get install cmake</p>
</blockquote>
<ul>
<li><a href="http://www.vim.org/" rel="nofollow">Vim</a> -- VI improved, if you want a text editor with some bells and whistles. Otherwise, just use 'nano', which comes with Ubuntu.</li>
</ul>
<blockquote>
<p>apt-get install vim</p>
</blockquote>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/400085#4000850Answer by SCVirus for Setting up a Programming Environment in LinuxSCVirus2008-12-30T11:45:24Z2008-12-30T11:45:24Z<p>Twe options, you must make your decision now and never look back, or risk being burned at the stake:</p>
<p>a. Emacs
b. vi(m)</p>
<p>Do not listen to any rational arguments before choosting... listen to the light inside yourself...</p>
http://stackoverflow.com/questions/222471/setting-up-a-programming-environment-in-linux/429862#4298620Answer by Johan for Setting up a Programming Environment in LinuxJohan2009-01-09T21:44:17Z2009-01-09T21:44:17Z<p>Install a lot of bell a whistles for the editor you choose, vi is usable but no fun.
vim is fun, but vim <a href="http://www.vim.org/scripts/script_search_results.php?order_by=rating" rel="nofollow">with extras</a> is great.</p>
<p>(And the same is true for Emacs even if that means installing tetris and a doctor ;-) )</p>
<p>/Johan</p>