52
52
TARGET_CRATES := libc std term \
53
53
getopts collections test rand \
54
54
compiler_builtins core alloc \
55
- rustc_unicode rustc_bitflags \
55
+ std_unicode rustc_bitflags \
56
56
alloc_system alloc_jemalloc \
57
57
panic_abort panic_unwind unwind
58
58
RUSTC_CRATES := rustc rustc_typeck rustc_mir rustc_borrowck rustc_resolve rustc_driver \
@@ -69,19 +69,19 @@ DEPS_compiler_builtins := core native:compiler-rt
69
69
DEPS_alloc := core libc alloc_system
70
70
DEPS_alloc_system := core libc
71
71
DEPS_alloc_jemalloc := core libc native:jemalloc
72
- DEPS_collections := core alloc rustc_unicode
72
+ DEPS_collections := core alloc std_unicode
73
73
DEPS_libc := core
74
74
DEPS_rand := core
75
75
DEPS_rustc_bitflags := core
76
- DEPS_rustc_unicode := core
76
+ DEPS_std_unicode := core
77
77
DEPS_panic_abort := libc alloc
78
78
DEPS_panic_unwind := libc alloc unwind
79
79
DEPS_unwind := libc
80
80
81
81
RUSTFLAGS_compiler_builtins := -lstatic=compiler-rt
82
82
RUSTFLAGS_panic_abort := -C panic=abort
83
83
84
- DEPS_std := core libc rand alloc collections compiler_builtins rustc_unicode \
84
+ DEPS_std := core libc rand alloc collections compiler_builtins std_unicode \
85
85
native:backtrace \
86
86
alloc_system panic_abort panic_unwind unwind
87
87
DEPS_arena := std
@@ -96,7 +96,7 @@ DEPS_serialize := std log
96
96
DEPS_term := std
97
97
DEPS_test := std getopts term native:rust_test_helpers
98
98
99
- DEPS_syntax := std term serialize log arena libc rustc_bitflags rustc_unicode rustc_errors syntax_pos rustc_data_structures
99
+ DEPS_syntax := std term serialize log arena libc rustc_bitflags std_unicode rustc_errors syntax_pos rustc_data_structures
100
100
DEPS_syntax_ext := syntax syntax_pos rustc_errors fmt_macros proc_macro
101
101
DEPS_syntax_pos := serialize
102
102
DEPS_proc_macro_tokens := syntax syntax_pos log
@@ -158,7 +158,7 @@ ONLY_RLIB_libc := 1
158
158
ONLY_RLIB_alloc := 1
159
159
ONLY_RLIB_rand := 1
160
160
ONLY_RLIB_collections := 1
161
- ONLY_RLIB_rustc_unicode := 1
161
+ ONLY_RLIB_std_unicode := 1
162
162
ONLY_RLIB_rustc_bitflags := 1
163
163
ONLY_RLIB_alloc_system := 1
164
164
ONLY_RLIB_alloc_jemalloc := 1
@@ -169,7 +169,7 @@ ONLY_RLIB_unwind := 1
169
169
TARGET_SPECIFIC_alloc_jemalloc := 1
170
170
171
171
# Documented-by-default crates
172
- DOC_CRATES := std alloc collections core libc rustc_unicode
172
+ DOC_CRATES := std alloc collections core libc std_unicode
173
173
174
174
ifeq ($(CFG_DISABLE_JEMALLOC ) ,)
175
175
RUSTFLAGS_rustc_back := --cfg 'feature="jemalloc"'
0 commit comments