clang: add -c example (#6494)

This commit is contained in:
pixel
2021-09-09 21:55:54 +02:00
committed by GitHub
parent 2dee424da0
commit 222f3e6130

View File

@@ -18,3 +18,7 @@
- Compile source code into LLVM Intermediate Representation (IR):
`clang -S -emit-llvm {{file.c}} -o {{file.ll}}`
- Compile source code without linking:
`clang -c {{input_source.c}}`