Skip to content

Commit da100fe

Browse files
committed
Support VS 2017
Fixes #38584
1 parent f89d8d1 commit da100fe

File tree

14 files changed

+63
-533
lines changed

14 files changed

+63
-533
lines changed

src/Cargo.lock

+18-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/bootstrap/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ num_cpus = "1.0"
3636
toml = "0.1"
3737
getopts = "0.2"
3838
rustc-serialize = "0.3"
39-
gcc = "0.3.46"
39+
gcc = "0.3.50"
4040
libc = "0.2"

src/liballoc_jemalloc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ libc = { path = "../rustc/libc_shim" }
1717

1818
[build-dependencies]
1919
build_helper = { path = "../build_helper" }
20-
gcc = "0.3.27"
20+
gcc = "0.3.50"
2121

2222
[features]
2323
debug = []

src/libcompiler_builtins/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ core = { path = "../libcore" }
1616

1717
[build-dependencies]
1818
build_helper = { path = "../build_helper" }
19-
gcc = "0.3.27"
19+
gcc = "0.3.50"

src/libflate/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ crate-type = ["dylib"]
1111

1212
[build-dependencies]
1313
build_helper = { path = "../build_helper" }
14-
gcc = "0.3.27"
14+
gcc = "0.3.50"

src/librustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ rustc_bitflags = { path = "../librustc_bitflags" }
1717

1818
[build-dependencies]
1919
build_helper = { path = "../build_helper" }
20-
gcc = "0.3.27"
20+
gcc = "0.3.50"

src/librustc_trans/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ rustc_platform_intrinsics = { path = "../librustc_platform_intrinsics" }
2525
serialize = { path = "../libserialize" }
2626
syntax = { path = "../libsyntax" }
2727
syntax_pos = { path = "../libsyntax_pos" }
28+
29+
[target."cfg(windows)".dependencies]
30+
gcc = "0.3.50"

src/librustc_trans/back/link.rs

+31-10
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ use super::archive::{ArchiveBuilder, ArchiveConfig};
1212
use super::linker::Linker;
1313
use super::rpath::RPathConfig;
1414
use super::rpath;
15-
use super::msvc;
1615
use metadata::METADATA_FILENAME;
1716
use rustc::session::config::{self, NoDebugInfo, OutputFilenames, Input, OutputType};
1817
use rustc::session::filesearch;
@@ -142,20 +141,41 @@ pub fn build_link_meta(incremental_hashes_map: &IncrementalHashesMap) -> LinkMet
142141
return r;
143142
}
144143

145-
// The third parameter is for an extra path to add to PATH for MSVC
146-
// cross linkers for host toolchain DLL dependencies
147-
pub fn get_linker(sess: &Session) -> (String, Command, Option<PathBuf>) {
144+
// The third parameter is for an env vars, used to set up the path for MSVC
145+
// to find its DLLs
146+
pub fn get_linker(sess: &Session) -> (String, Command, Vec<(OsString, OsString)>) {
148147
if let Some(ref linker) = sess.opts.cg.linker {
149-
(linker.clone(), Command::new(linker), None)
148+
(linker.clone(), Command::new(linker), vec![])
150149
} else if sess.target.target.options.is_like_msvc {
151-
let (cmd, host) = msvc::link_exe_cmd(sess);
152-
("link.exe".to_string(), cmd, host)
150+
let (cmd, envs) = msvc_link_exe_cmd(sess);
151+
("link.exe".to_string(), cmd, envs)
153152
} else {
154153
(sess.target.target.options.linker.clone(),
155-
Command::new(&sess.target.target.options.linker), None)
154+
Command::new(&sess.target.target.options.linker), vec![])
156155
}
157156
}
158157

158+
#[cfg(windows)]
159+
pub fn msvc_link_exe_cmd(sess: &Session) -> (Command, Vec<(OsString, OsString)>) {
160+
use gcc::windows_registry;
161+
162+
let target = &sess.opts.target_triple;
163+
let tool = windows_registry::find_tool(target, "link.exe");
164+
165+
if let Some(tool) = tool {
166+
let envs = tool.env().to_vec();
167+
(tool.to_command(), envs)
168+
} else {
169+
debug!("Failed to locate linker.");
170+
(Command::new("link.exe"), vec![])
171+
}
172+
}
173+
174+
#[cfg(not(windows))]
175+
pub fn msvc_link_exe_cmd(_sess: &Session) -> (Command, Vec<(OsString, OsString)>) {
176+
(Command::new("link.exe"), vec![])
177+
}
178+
159179
pub fn get_ar_prog(sess: &Session) -> String {
160180
sess.opts.cg.ar.clone().unwrap_or_else(|| {
161181
sess.target.target.options.ar.clone()
@@ -706,8 +726,9 @@ fn link_natively(sess: &Session,
706726
let flavor = sess.linker_flavor();
707727

708728
// The invocations of cc share some flags across platforms
709-
let (pname, mut cmd, extra) = get_linker(sess);
710-
cmd.env("PATH", command_path(sess, extra));
729+
let (pname, mut cmd, envs) = get_linker(sess);
730+
// This will set PATH on MSVC
731+
cmd.envs(envs);
711732

712733
let root = sess.target_filesearch(PathKind::Native).get_lib_path();
713734
if let Some(args) = sess.target.target.options.pre_link_args.get(&flavor) {

src/librustc_trans/back/msvc/arch.rs

-56
This file was deleted.

0 commit comments

Comments
 (0)