diff --git a/pages/common/gcc.md b/pages/common/gcc.md index 304f75d346..276b532f31 100644 --- a/pages/common/gcc.md +++ b/pages/common/gcc.md @@ -13,3 +13,7 @@ - Include libraries from a different path: `gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}` + +- Compile source code into Assembler instructions: + +`gcc -S {{source.c}}`