Skip to content

Commit 4aadabc

Browse files
bors[bot]vlad20012
andauthored
Merge #11365
11365: Add a way to disable dll copying for users of proc_macro_srv library r=lnicola a=vlad20012 We use `ra_ap_proc_macro_srv` library in IntelliJ Rust in order to expand proc macros. We need a way to disable [DLL copying to a temp dir on Windows](https://github.com/rust-analyzer/rust-analyzer/blob/master/crates/proc_macro_srv/src/dylib.rs#L166) behavior because it causes issues like intellij-rust/intellij-rust#7709. Unlike RA, file locking is not an issue for IntelliJ Rust because we copy DLLs to a temp dir before calling the expander. Co-authored-by: vlad20012 <[email protected]>
2 parents cd6521e + e277d5d commit 4aadabc

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/proc_macro_srv/src/dylib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ fn ensure_file_with_lock_free_access(path: &Path) -> io::Result<PathBuf> {
168168
use std::ffi::OsString;
169169
use std::hash::{BuildHasher, Hasher};
170170

171+
if std::env::var("RA_DONT_COPY_PROC_MACRO_DLL").is_ok() {
172+
return Ok(path.to_path_buf());
173+
}
174+
171175
let mut to = std::env::temp_dir();
172176

173177
let file_name = path.file_name().ok_or_else(|| {

0 commit comments

Comments
 (0)