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:
Alex Crichton 2019-07-19 13:06:31 -07:00
parent 04b88a9eba
commit 9f6e1ce5df
2 changed files with 1 additions and 1 deletions

View file

@ -7,7 +7,6 @@ edition = "2018"
[lib]
name = "fmt_macros"
path = "lib.rs"
crate-type = ["dylib"]
[dependencies]
syntax_pos = { path = "../libsyntax_pos" }

View file

@ -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};