Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 64a35f9

Browse files
committedApr 8, 2016
Reintroduce rustc_llvm dependency in rustc
The dependency was removed in 352b44d, but it is needed in order to compute the target features.
1 parent bf44003 commit 64a35f9

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed
 

‎mk/crates.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ DEPS_rustc_const_eval := rustc_const_math rustc syntax log serialize \
9797
rustc_back graphviz
9898

9999
DEPS_rustc := syntax fmt_macros flate arena serialize getopts rbml \
100-
log graphviz rustc_back rustc_data_structures\
100+
log graphviz rustc_llvm rustc_back rustc_data_structures\
101101
rustc_const_math
102102
DEPS_rustc_back := std syntax flate log libc
103103
DEPS_rustc_borrowck := rustc rustc_mir log graphviz syntax

‎src/librustc/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,6 @@ rustc_back = { path = "../librustc_back" }
1919
rustc_bitflags = { path = "../librustc_bitflags" }
2020
rustc_const_math = { path = "../librustc_const_math" }
2121
rustc_data_structures = { path = "../librustc_data_structures" }
22+
rustc_llvm = { path = "../librustc_llvm" }
2223
serialize = { path = "../libserialize" }
2324
syntax = { path = "../libsyntax" }

‎src/librustc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ extern crate getopts;
5151
extern crate graphviz;
5252
extern crate libc;
5353
extern crate rbml;
54+
extern crate rustc_llvm as llvm;
5455
extern crate rustc_back;
5556
extern crate rustc_data_structures;
5657
extern crate serialize;

0 commit comments

Comments
 (0)
Please sign in to comment.