Create executable application in linux -
How do I create an executable application in Linux like .exe file in Windows? Most of you have used "Pidgin IM" in Linux / have seen that it will open the window where you can see your friends, and more like gnome-caculator, I have the same executable file for my application Want to make
Thanks Edwards.
The most common way to create an executable is to use a compiler (just like windows). The GNU Compiler Collection (GCC) can already be installed on your Linux system, see if you can find it by:
$ gcc
or
$ gcc --help
If not, you have to install it. In this man page ( man gcc
), info pages ( info gcc
) and one.
Note GCC
C command is automatically a compiler part, for other languages G ++
and for others (although you have command line There is considerable control over the options).
Comments
Post a Comment