mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
Auto merge of #16257 - lnicola:rustc-check-cfg, r=Veykril
internal: Teach cargo about `cfg(rust_analyzer)` r? `@Urgau` is this a good idea?, CC `@Veykril`
This commit is contained in:
commit
af1fd88c4d
5
crates/proc-macro-srv-cli/build.rs
Normal file
5
crates/proc-macro-srv-cli/build.rs
Normal file
@ -0,0 +1,5 @@
|
||||
//! This teaches cargo about our cfg(rust_analyzer)
|
||||
|
||||
fn main() {
|
||||
println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
|
||||
}
|
@ -4,6 +4,8 @@
|
||||
use std::{env, fs::File, io::Write, path::PathBuf, process::Command};
|
||||
|
||||
fn main() {
|
||||
println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
|
||||
|
||||
let mut path = PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
||||
path.push("rustc_version.rs");
|
||||
let mut f = File::create(&path).unwrap();
|
||||
|
@ -53,7 +53,7 @@ fn main() {
|
||||
println!("Creating {}", src_dir.display());
|
||||
std::fs::create_dir_all(src_dir).unwrap();
|
||||
|
||||
for item_els in [&["Cargo.toml"][..], &["src", "lib.rs"]] {
|
||||
for item_els in [&["Cargo.toml"][..], &["build.rs"][..], &["src", "lib.rs"]] {
|
||||
let mut src = imp_dir.clone();
|
||||
let mut dst = staging_dir.clone();
|
||||
for el in item_els {
|
||||
|
5
crates/proc-macro-srv/proc-macro-test/imp/build.rs
Normal file
5
crates/proc-macro-srv/proc-macro-test/imp/build.rs
Normal file
@ -0,0 +1,5 @@
|
||||
//! This teaches cargo about our cfg(rust_analyzer)
|
||||
|
||||
fn main() {
|
||||
println!("cargo:rustc-check-cfg=cfg(rust_analyzer)");
|
||||
}
|
Loading…
Reference in New Issue
Block a user