Auto merge of #27144 - semarie:openbsd-archive_format, r=alexcrichton

the "bsd" archive_format don't work under openbsd.
use of "" (system ar) is ok.
use of "gnu" is ok too.

r? @alexcrichton
This commit is contained in:
bors 2015-07-21 04:53:50 +00:00
commit f9f0e44b33

View file

@ -27,7 +27,7 @@ pub fn opts() -> TargetOptions {
"-Wl,--as-needed".to_string(),
),
position_independent_executables: true,
archive_format: "bsd".to_string(),
archive_format: "gnu".to_string(),
.. Default::default()
}
}