Answers for "compile with gcc but dont link"

0

compile with gcc but dont link

gcc -E  --> Preprocessor, but don't compile
gcc -S  --> Compile but don't assemble
gcc -c  --> Preprocess, compile, and assemble, but don't link
gcc with no switch will link your object files and generate the executable
Posted by: Guest on June-17-2021

Code answers related to "compile with gcc but dont link"

Browse Popular Code Answers by Language