1
0
mirror of https://github.com/cheat/cheat.git synced 2025-01-13 15:20:56 +01:00
cheat/cheatsheets/gcc

9 lines
110 B
Plaintext
Raw Normal View History

# Compile a file
gcc file.c
# Compile a file with a custom output
gcc -o file file.c
# Debug symbols
gcc -g