Skip to content

Commit

Permalink
fixes #27124 for openbsd
Browse files Browse the repository at this point in the history
the "bsd" archive_format don't work under openbsd.
use of "" (system ar) is ok.
use of "gnu" is ok too.
  • Loading branch information
semarie committed Jul 20, 2015
1 parent 3f50dca commit 761e11e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_back/target/openbsd_base.rs
Expand Up @@ -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()
}
}

0 comments on commit 761e11e

Please sign in to comment.