1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-09-10 15:33:50 +02:00

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>
This commit is contained in:
jxu 2022-08-22 08:12:20 -04:00 committed by GitHub
parent 09b5bb8c04
commit cecf8f2150
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,6 +19,6 @@
`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}}`