diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2015-08-04 09:08:07 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2015-08-10 17:45:16 -0700 |
| commit | 138252cc6a59420144b261a6537dcc2d95551981 (patch) | |
| tree | a84fd498fc551e0e96ca50a409199c171593c891 /src | |
| parent | ceded6adb3a4e172eabef09e1c78717a99c16b14 (diff) | |
| download | rust-138252cc6a59420144b261a6537dcc2d95551981.tar.gz rust-138252cc6a59420144b261a6537dcc2d95551981.zip | |
trans: Specify `archive_format` for MSVC
This means that we no longer need to ship the `llvm-ar.exe` binary in the MSVC distribution, and after a snapshot we can remove a good bit of logic from the makefiles!
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_back/target/windows_msvc_base.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustc_back/target/windows_msvc_base.rs b/src/librustc_back/target/windows_msvc_base.rs index 30d74c80735..03d69964031 100644 --- a/src/librustc_back/target/windows_msvc_base.rs +++ b/src/librustc_back/target/windows_msvc_base.rs @@ -60,6 +60,7 @@ pub fn opts() -> TargetOptions { "/NOLOGO".to_string(), "/NXCOMPAT".to_string(), ], + archive_format: "gnu".to_string(), .. Default::default() } |
