rustc_codegen_spirv_target_specs/
lib.rs

1#![doc = include_str!("../README.md")]
2
3/// directory with all the `target-specs` jsons for our codegen backend
4#[cfg(feature = "dir_path")]
5pub const TARGET_SPEC_DIR_PATH: &str = concat!(env!("CARGO_MANIFEST_DIR"), "/target-specs");
6
7#[cfg(feature = "include_str")]
8mod include_str;
9#[cfg(feature = "include_str")]
10pub use include_str::TARGET_SPECS;