52
52
TARGET_CRATES := libc std flate arena term \
53
53
serialize getopts collections test rand \
54
54
log regex graphviz core rbml alloc \
55
- unicode
55
+ unicode rustc_bitflags
56
56
RUSTC_CRATES := rustc rustc_typeck rustc_borrowck rustc_resolve rustc_driver \
57
57
rustc_trans rustc_back rustc_llvm
58
58
HOST_CRATES := syntax $(RUSTC_CRATES ) rustdoc fmt_macros
@@ -64,7 +64,8 @@ DEPS_libc := core
64
64
DEPS_unicode := core
65
65
DEPS_alloc := core libc native:jemalloc
66
66
DEPS_std := core libc rand alloc collections unicode \
67
- native:rust_builtin native:backtrace native:rustrt_native
67
+ native:rust_builtin native:backtrace native:rustrt_native \
68
+ rustc_bitflags
68
69
DEPS_graphviz := std
69
70
DEPS_syntax := std term serialize log fmt_macros arena libc
70
71
DEPS_rustc_driver := arena flate getopts graphviz libc rustc rustc_back rustc_borrowck \
@@ -80,6 +81,7 @@ DEPS_rustc_llvm := native:rustllvm libc std
80
81
DEPS_rustc_back := std syntax rustc_llvm flate log libc
81
82
DEPS_rustdoc := rustc rustc_driver native:hoedown serialize getopts \
82
83
test
84
+ DEPS_rustc_bitflags := core
83
85
DEPS_flate := std native:miniz
84
86
DEPS_arena := std
85
87
DEPS_graphviz := std
@@ -111,6 +113,7 @@ ONLY_RLIB_alloc := 1
111
113
ONLY_RLIB_rand := 1
112
114
ONLY_RLIB_collections := 1
113
115
ONLY_RLIB_unicode := 1
116
+ ONLY_RLIB_rustc_bitflags := 1
114
117
115
118
# ###############################################################################
116
119
# You should not need to edit below this line
0 commit comments