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!
This commit is contained in:
parent
04b88a9eba
commit
9f6e1ce5df
@ -7,7 +7,6 @@ edition = "2018"
|
||||
[lib]
|
||||
name = "fmt_macros"
|
||||
path = "lib.rs"
|
||||
crate-type = ["dylib"]
|
||||
|
||||
[dependencies]
|
||||
syntax_pos = { path = "../libsyntax_pos" }
|
||||
|
@ -6,6 +6,7 @@ extern crate rustc_codegen_utils;
|
||||
#[macro_use]
|
||||
extern crate rustc_data_structures;
|
||||
extern crate rustc_target;
|
||||
extern crate rustc_driver;
|
||||
|
||||
use std::any::Any;
|
||||
use std::sync::{Arc, mpsc};
|
||||
|
Loading…
Reference in New Issue
Block a user