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!
This commit is contained in:
Alex Crichton 2015-08-04 09:08:07 -07:00
parent ceded6adb3
commit 138252cc6a
3 changed files with 10 additions and 0 deletions

View file

@ -60,6 +60,7 @@ pub fn opts() -> TargetOptions {
"/NOLOGO".to_string(),
"/NXCOMPAT".to_string(),
],
archive_format: "gnu".to_string(),
.. Default::default()
}