10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb10639 commit 03357f1Copy full SHA for 03357f1
compiler/rustc_codegen_ssa/src/back/archive.rs
@@ -224,11 +224,7 @@ impl<'a> ArArchiveBuilder<'a> {
224
"gnu" => ArchiveKind::Gnu,
225
"bsd" => ArchiveKind::Bsd,
226
"darwin" => ArchiveKind::Darwin,
227
- "coff" => {
228
- // FIXME: ar_archive_writer doesn't support COFF archives yet.
229
- // https://github.com/rust-lang/ar_archive_writer/issues/9
230
- ArchiveKind::Gnu
231
- }
+ "coff" => ArchiveKind::Coff,
232
"aix_big" => ArchiveKind::AixBig,
233
kind => {
234
self.sess.dcx().emit_fatal(UnknownArchiveKind { kind });
0 commit comments