I'm using Linux Ubuntu Intrepid Ibex and compiling C++ files with GCC, but when i compile, gcc makes a *.out file, that is the executable, but how i can make Linux executables? Thanks!
|
feedback
|
|
That executable is a "Linux executable" - that is, it's executable on any recent Linux system. You can rename the file to what you want using
or better yet, tell GCC where to put its output file using
Keep in mind that before Linux systems will let you run the file, you may need to set its "executable bit":
Also remember that on Linux, the extension of the file has very little to do with what it actually is - your executable can be named | |||||||||||||
feedback
|
|
To create a executable called
You could also just rename the *.out file gcc generates to the desired name. | |||
|
feedback
|
|
That is the executable. If you don't like a.out, you can pass an -o flag to the compiler. If the executable isn't marked with an executable bit, you need to do so youself:
HTH. | |||||||||
feedback
|
*.outfiles are the executables. Do you need another type of executables? – notnoop Jul 17 '09 at 0:39