Modify reference to issue 1013

Co-Authored-By: Ralf Jung <post@ralfj.de>
This commit is contained in:
Youngsuk Kim 2020-03-27 10:15:35 -04:00 committed by GitHub
parent eaca17fcc3
commit 3fe71dff5a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -28,7 +28,7 @@ impl<'tcx> EnvVars<'tcx> {
let target_os = ecx.tcx.sess.target.target.target_os.as_str();
if target_os == "windows" {
// Temporary hack: Exclude `TERM` var to avoid terminfo trying to open the termcap file.
// Can be removed once Issue#1013(Implement file system access for Windows) is resolved.
// Can be removed once https://github.com/rust-lang/miri/issues/1013 is resolved.
excluded_env_vars.push("TERM".to_owned());
}