mirror of
https://github.com/Erreur32/cheat.git
synced 2024-11-03 14:31:06 +01:00
9 lines
110 B
Plaintext
9 lines
110 B
Plaintext
|
# Compile a file
|
||
|
gcc file.c
|
||
|
|
||
|
# Compile a file with a custom output
|
||
|
gcc -o file file.c
|
||
|
|
||
|
# Debug symbols
|
||
|
gcc -g
|