diff --git a/pages/common/clang.md b/pages/common/clang.md index 0a139371d5..cb99409e0e 100644 --- a/pages/common/clang.md +++ b/pages/common/clang.md @@ -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}}`