fixes #27124 for openbsd

the "bsd" archive_format don't work under openbsd.
use of "" (system ar) is ok.
use of "gnu" is ok too.
This commit is contained in:
Sébastien Marie 2015-07-20 06:11:59 +02:00
parent 3f50dca386
commit 761e11e1c4

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()
}
}