As a beginner on programming, it¡¯s better to use GCC to compile the program. Then you can know more about the
process of a program compile and link. I advice you to using vi/vim to edit the code.
GCC provide so many command option. However, you don¡¯t have to learn all the option. As a beginner, you only need
to be familiar with several option. Then you can begin to write your program.
1. Common compiler command options
For example, the source file is test.c
(1). Compile and link with no option
Function: pretreatment, assemble, compile and link to an executable program.There is no output specified. ¡°a.out¡± is
the default output file. After compiling successfully ,there will be a new file ¡°a.out¡± in the current path. You can execute
the command to run the program.
Function: pretreatment, assemble, compile and link to an executable program. The ¡°-o¡± option is used to specify
the output file. After compiling successfully , there will be a new file ¡°test¡± in the current path. You can execute the
command to run the program.
(3). Option -E
Fuction: pretreatment the ¡°test.c¡± and assemble to ¡°test.s¡±.
(5). Option -c
Function: compile the ¡°test.s¡± to ¡°test.o¡±
(6). Option -o
Function: link ¡°test.o¡± to ¡°test¡±
(7). Option -O
Using the level 1 to compile the file. The levels are 1 to 3. Higher level with
(8). Compile the C++ program file using the std libs..
Function: compile the test.cpp and link to test execute file. -lstdc++ means the std libs.
2. Compile more than one files.
If you want to compile more than one files. You can do it as the follow ways:
For example, you are going to compile these two files test.c and testfun.c
(1). Compile all files at once.
Function: compile the testfun.c and test.c, link to an executive file.
(2). Compile the files respectively and link them to an output file.
Comparing the two ways above, the fist way need to compile all files at every compile. The second way just compile
the files that have been modified, so it don¡¯t have to compile all files at every compile.
Welcome Firefly Open Source Community (https://bbs.t-firefly.com/) | Powered by Discuz! X3.1 |