I know it, forgets it and relearn it again. Time to write it down.
|
|
gcc main.cpp -o main.out |
||
|
|
If it is a simple single source program:
where the source file is foo.c or foo.cpp, etc. 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. |
||
|
|
|
Add following to get best warnings, you will not regret it. If you can, compile WISE (warning is error)
|
||||||
|
|
|
Use a Read the |
||
|
|
|
All application execution in a Unix (Linux, MacOS X, AIX etc) environment depends on the executable search path. You can display this path in the terminal with this command:
On MacOS X (by default) this will display the following colon separated search path:
So any executable in the listed directories can by run just by typing in their name. Eg:
This runs 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:
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
Or say I was in the directory
Similarly if I am in the same directory as
To determine which directory you are currently in use the 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. This can be does easily by either creating or editing the existing
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:
|
||
|
|
|
./[name of the program] For example ./a.out |
||||||||||
|
