Skip to content

Commit

Permalink
Auto merge of #62813 - alexcrichton:less-dylib, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
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!
  • Loading branch information
bors committed Jul 31, 2019
2 parents 4a18848 + 9f6e1ce commit 9152fe4
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 9152fe4

Please sign in to comment.