Skip to content

Commit 9152fe4

Browse files
committed
Auto merge of #62813 - alexcrichton:less-dylib, r=Mark-Simulacrum
rustc: Compile the `fmt_macros` crate as an rlib I think this was left out by accident from the "convert everything to rlibs" commit, there's no need for this to be a dylib just as everything else doesn't need to be a dylib!
2 parents 4a18848 + 9f6e1ce commit 9152fe4

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

src/libfmt_macros/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2018"
77
[lib]
88
name = "fmt_macros"
99
path = "lib.rs"
10-
crate-type = ["dylib"]
1110

1211
[dependencies]
1312
syntax_pos = { path = "../libsyntax_pos" }

src/test/run-make-fulldeps/hotplug_codegen_backend/the_backend.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ extern crate rustc_codegen_utils;
66
#[macro_use]
77
extern crate rustc_data_structures;
88
extern crate rustc_target;
9+
extern crate rustc_driver;
910

1011
use std::any::Any;
1112
use std::sync::{Arc, mpsc};

0 commit comments

Comments
 (0)