Add a way to disable dll copying for users of proc_macro_srv library

This commit is contained in:
vlad20012 2022-01-28 16:18:25 +03:00
parent cd6521e5de
commit e277d5d64e
No known key found for this signature in database
GPG Key ID: 58E62ED31A8B3999

View File

@ -168,6 +168,10 @@ fn ensure_file_with_lock_free_access(path: &Path) -> io::Result<PathBuf> {
use std::ffi::OsString;
use std::hash::{BuildHasher, Hasher};
if std::env::var("RA_DONT_COPY_PROC_MACRO_DLL").is_ok() {
return Ok(path.to_path_buf());
}
let mut to = std::env::temp_dir();
let file_name = path.file_name().ok_or_else(|| {