-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconditional-compilation.rs
61 lines (53 loc) · 2.07 KB
/
conditional-compilation.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
/// ! to run, execute `cargo run --bin cc`
/// * Conditional compilation
/// -------------------------
///
/// Rust's conditional compilation helps us enable or disable code blocks based
/// on different conditions such as platform, compiler version, custom configs,
/// etc.
///
/// Some of the common use-case of it are as follows:
/// * Writing platform-specific codes (eg: OS, hardware, etc)
/// * Adding or using optional features
/// * Separating Debug and Release modes
///
fn main() {
println!("Conditional Compilation");
// platform-specific code
{
/// # Display Platform
/// This function prints out the platform-specific message when called.
/// the example uses a `#[cfg()]` configuration that takes the target
/// Operating system.
///
/// Instead of targeting specific line, we can target different
/// functions, code blocks, etc. so that our code gets compiled based on
/// the platform we are using.
fn display_platform() {
// The following code runs only on windows
#[cfg(target_os = "windows")]
println!("⛔ The Platform is Windows ⛔");
// The following code runs only on linux
#[cfg(target_os = "linux")]
println!("⛔ The Platform is Linux ⛔");
// The following code runs only on Mac OS
#[cfg(target_os = "macos")]
println!("⛔ The Platform is Mac OS ⛔");
}
display_platform();
}
// development environment specific compilation
{
// ! this code block runs only when we run `cargo run --bin cc`
#[cfg(debug_assertions)]
println!("⛔⛔ This code is visible only in debug mode");
// ! this code block runs only when we run `cargo run --bin cc --release`
#[cfg(not(debug_assertions))]
println!("⛔⛔ This code is visible only in production mode");
#[cfg(test)]
{
// ! this code block runs only when we run `cargo test --bin cc`
assert_eq!(1 + 1, 2);
}
}
}