#process-running #translated #detect #binary #proc #rosetta

is_proc_translated

Detect if the current process is running as a translated binary under Rosetta

2 releases

0.1.1 Oct 7, 2022
0.1.0 Oct 7, 2022

#79 in macOS and iOS APIs

Download history 4904/week @ 2023-12-07 4511/week @ 2023-12-14 1520/week @ 2023-12-21 2281/week @ 2023-12-28 3050/week @ 2024-01-04 7761/week @ 2024-01-11 7457/week @ 2024-01-18 5614/week @ 2024-01-25 5633/week @ 2024-02-01 6930/week @ 2024-02-08 5748/week @ 2024-02-15 6149/week @ 2024-02-22 6741/week @ 2024-02-29 6811/week @ 2024-03-07 8430/week @ 2024-03-14 6763/week @ 2024-03-21

30,024 downloads per month
Used in 2 crates (via nix_rs)

MIT/Apache

7KB

is_proc_translated

github crates.io docs.rs

Detect if the current process is running as a translated binary under Rosetta.

[dependencies]
is_proc_translated = "0.1"

Using is_proc_translated

use std::process::Command;

use is_proc_translated::is_proc_translated;

fn main() {
    // Force executing the arm64 slice of a Universal Binary.
    let status = if is_proc_translated() {
        Command::new("arch")
            .arg("-arm64")
            .arg("buck")
            .arg("build")
            .status()
            .expect("failed to execute process")
    } else {
        Command::new("buck")
            .arg("build")
            .status()
            .expect("failed to execute process")
    };

    println!("process finished with: {status}");
}

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies