Skip to content

Commit

Permalink
rustc: Compile the fmt_macros crate as an rlib
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
alexcrichton committed Jul 29, 2019
1 parent 04b88a9 commit 9f6e1ce
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/libfmt_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ edition = "2018"
[lib]
name = "fmt_macros"
path = "lib.rs"
crate-type = ["dylib"]

[dependencies]
syntax_pos = { path = "../libsyntax_pos" }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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};
Expand Down

0 comments on commit 9f6e1ce

Please sign in to comment.