Explorar el Código

gcc: mention -c compiles into object file (#8381)

* gcc: mention -c compiles into object file

* gcc: clarify wording about compiling to object file

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>

Co-authored-by: Axel Navarro <navarroaxel@gmail.com>
jxu hace 2 años
padre
commit
cecf8f2150
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      pages/common/gcc.md

+ 1 - 1
pages/common/gcc.md

@@ -19,6 +19,6 @@
 
 
 `gcc -S {{path/to/source.c}}`
 `gcc -S {{path/to/source.c}}`
 
 
-- Compile source code without linking:
+- Compile source code into an object file without linking:
 
 
 `gcc -c {{path/to/source.c}}`
 `gcc -c {{path/to/source.c}}`