1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-04 07:15:32 +02:00

Merge pull request #814 from Cvetomird91/gcc

added gcc option
This commit is contained in:
Leandro Ostera 2016-03-02 18:33:35 +01:00
commit 08f4e9194e

View file

@ -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}}`