How to run C/C++ in a Unix console/Mac terminal? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T21:24:51Z http://stackoverflow.com/feeds/question/221185 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal 1 How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T08:43:35Z 2009-04-09T11:29:19Z <p>I know it, forgets it and relearn it again. Time to write it down.</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221189#221189 0 Answer by P-A for How to run C/C++ in a Unix console/Mac terminal? P-A 2008-10-21T08:45:46Z 2008-10-21T08:45:46Z <p>./[name of the program]</p> <p>For example ./a.out</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221193#221193 5 Answer by Neverrav for How to run C/C++ in a Unix console/Mac terminal? Neverrav 2008-10-21T08:46:38Z 2008-10-21T08:46:38Z <p>gcc main.cpp -o main.out<br /> ./main.out</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221204#221204 5 Answer by Nazgob for How to run C/C++ in a Unix console/Mac terminal? Nazgob 2008-10-21T08:52:01Z 2008-12-17T20:49:07Z <p>Add following to get best warnings, you will not regret it. If you can, compile WISE (warning is error)</p> <pre><code>- Wall -pedantic -Weffc++ -Werror </code></pre> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221222#221222 3 Answer by Konrad Rudolph for How to run C/C++ in a Unix console/Mac terminal? Konrad Rudolph 2008-10-21T08:58:47Z 2008-10-21T08:58:47Z <p>Use a <code>makefile</code>. Even for very small (= one-file) projects, the effort is probably worth it because you can have several sets of compiler settings to test things. Debugging and deployment works much easier this way.</p> <p>Read the <a href="http://www.gnu.org/software/make/manual/make.html" rel="nofollow"><code>make</code> manual</a>, it seems quite long at first glance but most sections you can just skim over. All in all it took me a few hours and made me much more productive.</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/221257#221257 7 Answer by camh for How to run C/C++ in a Unix console/Mac terminal? camh 2008-10-21T09:10:24Z 2008-10-21T09:10:24Z <p>If it is a simple single source program:</p> <pre><code>make foo </code></pre> <p>where the source file is foo.c or foo.cpp, etc.</p> <p>You dont even need a makefile. Make has enough built-in rules to build your source file into an executable of the same name, minus extension.</p> http://stackoverflow.com/questions/221185/how-to-run-c-c-in-a-unix-console-mac-terminal/224784#224784 1 Answer by orj for How to run C/C++ in a Unix console/Mac terminal? orj 2008-10-22T07:51:33Z 2008-10-22T07:51:33Z <p>All application execution in a Unix (Linux, MacOS X, AIX etc) environment depends on the executable search path.</p> <p>You can display this path in the terminal with this command:</p> <blockquote> <p>echo $PATH</p> </blockquote> <p>On MacOS X (by default) this will display the following colon separated search path:</p> <blockquote> <p>/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin</p> </blockquote> <p>So any executable in the listed directories can by run just by typing in their name. Eg:</p> <blockquote> <p>cat mytextfile.txt</p> </blockquote> <p>This runs <code>/bin/cat</code> and displays mytextfile.txt to the terminal.</p> <p>To run any other command that is not in the executable search path requires that you qualify the path to the executable. So say I had an executable called MyProgram in my home directory on MacOS X I can fully qualify it like so:</p> <blockquote> <p>/Users/oliver/MyProgram</p> </blockquote> <p>If you are in a location that is near the program you wished to execute you can qualify the name with a partial path. For example if <code>MyProgram</code> was in the directory <code>/Users/oliver/MyProject</code> I and I was in my home directory I can qualify the executable name like this, and have it execute:</p> <blockquote> <p>MyProject/MyProgram</p> </blockquote> <p>Or say I was in the directory <code>/Users/oliver/MyProject2</code> and I wanted to execute <code>/Users/oliver/MyProject/MyProgram</code> I can use a relative path like this, to execute it:</p> <blockquote> <p>../MyProject/MyProgram</p> </blockquote> <p>Similarly if I am in the same directory as <code>MyProgram</code> I need to use a "current directory" relative path. The current directory you are in is the period character followed by a slash. Eg:</p> <blockquote> <p>./MyProgram </p> </blockquote> <p>To determine which directory you are currently in use the <code>pwd</code> command.</p> <p>If you are commonly putting programs in a place on your hard disk that you wish to run without having to qualify their names. For example if you have a "bin" directory in your home directory for regularly used shell scripts of other programs if may be wise to alter your executable search path.</p> <p>This can be does easily by either creating or editing the existing <code>.bash_profile</code> file in your home directory and adding the lines:</p> <pre><code>#!/bin/sh export PATH=$PATH:~/bin </code></pre> <p>Here the tilde (~) character is being used as a shortcut for /Users/oliver. Also note that the hash bang (#!) line needs to be the first line of the file (if it doesn't already exist). Note also that this technique requires that your login shell be bash (the default on MacOS X and most Linux distributions). Also note that if you want your programs installed in ~/bin to be used in preference to system executables your should reorder the export statement as follows:</p> <pre><code>export PATH=~/bin:$PATH </code></pre>