Skip to content

Commit 63408e1

Browse files
committed
Clarify conditional compilation
Introduction of `cfg` attribute and `cfg!` macro operators can be confusing. `cfg!` macro and `cfg` attribute behave differently in terms of conditional compilation. While `cfg` attribute enables conditional compilation of some code, `cfg!` macro conditionally evalutes to `true` or `false` literals for run-time checks.
1 parent c106d16 commit 63408e1

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/attribute/cfg.md

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# `cfg`
22

3-
Conditional compilation is possible through two different operators:
3+
Configuration conditional checks are possible through two different operators:
44

55
* the `cfg` attribute: `#[cfg(...)]` in attribute position
66
* the `cfg!` macro: `cfg!(...)` in boolean expressions
77

8-
Both utilize identical argument syntax.
8+
While the former enables conditional compilation, the latter conditionally
9+
evaluates to `true` or `false` literals allowing for checks at run-time. Both
10+
utilize identical argument syntax.
911

1012
```rust,editable
1113
// This function only gets compiled if the target OS is linux
@@ -22,7 +24,7 @@ fn are_you_on_linux() {
2224
2325
fn main() {
2426
are_you_on_linux();
25-
27+
2628
println!("Are you sure?");
2729
if cfg!(target_os = "linux") {
2830
println!("Yes. It's definitely linux!");

0 commit comments

Comments
 (0)