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 rustc_privacy
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 \
@@ -83,6 +84,7 @@ DEPS_rustc_llvm := native:rustllvm libc std
83
84
DEPS_rustc_back := std syntax rustc_llvm flate log libc
84
85
DEPS_rustdoc := rustc rustc_driver native:hoedown serialize getopts \
85
86
test
87
+ DEPS_rustc_bitflags := core
86
88
DEPS_flate := std native:miniz
87
89
DEPS_arena := std
88
90
DEPS_graphviz := std
@@ -114,6 +116,7 @@ ONLY_RLIB_alloc := 1
114
116
ONLY_RLIB_rand := 1
115
117
ONLY_RLIB_collections := 1
116
118
ONLY_RLIB_unicode := 1
119
+ ONLY_RLIB_rustc_bitflags := 1
117
120
118
121
# ###############################################################################
119
122
# You should not need to edit below this line
0 commit comments