rust/crates/proc-macro-test/build.rs

55 lines
1.9 KiB
Rust
Raw Normal View History

2021-06-09 15:16:52 +00:00
//! This will build the proc macro in `imp`, and copy the resulting dylib artifact into the
//! `OUT_DIR`.
//!
2022-04-29 14:29:24 +00:00
//! `proc-macro-test` itself contains only a path to that artifact.
2021-06-09 15:16:52 +00:00
use std::{
env, fs,
path::{Path, PathBuf},
process::Command,
};
use cargo_metadata::Message;
fn main() {
let out_dir = env::var_os("OUT_DIR").unwrap();
let out_dir = Path::new(&out_dir);
2022-04-29 14:29:24 +00:00
let name = "proc-macro-test-impl";
2021-06-09 15:16:52 +00:00
let version = "0.0.0";
let target_dir = out_dir.join("target");
2021-06-09 15:16:52 +00:00
let output = Command::new(toolchain::cargo())
.current_dir("imp")
2022-04-29 14:29:24 +00:00
.args(&["build", "-p", "proc-macro-test-impl", "--message-format", "json"])
// Explicit override the target directory to avoid using the same one which the parent
// cargo is using, or we'll deadlock.
// This can happen when `CARGO_TARGET_DIR` is set or global config forces all cargo
// instance to use the same target directory.
.arg("--target-dir")
.arg(&target_dir)
2021-06-09 15:16:52 +00:00
.output()
.unwrap();
assert!(output.status.success());
let mut artifact_path = None;
for message in Message::parse_stream(output.stdout.as_slice()) {
match message.unwrap() {
Message::CompilerArtifact(artifact) => {
if artifact.target.kind.contains(&"proc-macro".to_string()) {
let repr = format!("{} {}", name, version);
if artifact.package_id.repr.starts_with(&repr) {
artifact_path = Some(PathBuf::from(&artifact.filenames[0]));
}
}
}
_ => (), // Unknown message
}
}
// This file is under `target_dir` and is already under `OUT_DIR`.
2022-04-29 14:29:24 +00:00
let artifact_path = artifact_path.expect("no dylib for proc-macro-test-impl found");
2021-06-09 15:16:52 +00:00
let info_path = out_dir.join("proc_macro_test_location.txt");
fs::write(info_path, artifact_path.to_str().unwrap()).unwrap();
2021-06-09 15:16:52 +00:00
}