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

added gcc option

This commit is contained in:
Cvetomir Denchev 2016-03-02 14:56:33 +02:00
parent 6e94611f88
commit f667f90bec

View file

@ -13,3 +13,7 @@
- Include libraries from a different path: - Include libraries from a different path:
`gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}` `gcc {{source.c}} -o {{executable}} -I{{header_path}} -L{{library_path}} -l{{library_name}}`
- Compile source code into Assembler instructions:
`gcc -S {{source.c}}`