File tree 4 files changed +17
-21
lines changed
4 files changed +17
-21
lines changed Original file line number Diff line number Diff line change @@ -1897,6 +1897,17 @@ version = "0.4.6"
1897
1897
source = " registry+https://github.com/rust-lang/crates.io-index"
1898
1898
checksum = " dc6f3ad7b9d11a0c00842ff8de1b60ee58661048eb8049ed33c73594f359d7e6"
1899
1899
1900
+ [[package ]]
1901
+ name = " jemalloc-sys"
1902
+ version = " 0.5.0+5.3.0"
1903
+ source = " registry+https://github.com/rust-lang/crates.io-index"
1904
+ checksum = " f655c3ecfa6b0d03634595b4b54551d4bd5ac208b9e0124873949a7ab168f70b"
1905
+ dependencies = [
1906
+ " cc" ,
1907
+ " fs_extra" ,
1908
+ " libc" ,
1909
+ ]
1910
+
1900
1911
[[package ]]
1901
1912
name = " jobserver"
1902
1913
version = " 0.1.24"
@@ -3360,9 +3371,9 @@ checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
3360
3371
name = " rustc-main"
3361
3372
version = " 0.0.0"
3362
3373
dependencies = [
3374
+ " jemalloc-sys" ,
3363
3375
" rustc_codegen_ssa" ,
3364
3376
" rustc_driver" ,
3365
- " tikv-jemalloc-sys" ,
3366
3377
]
3367
3378
3368
3379
[[package ]]
@@ -5234,17 +5245,6 @@ dependencies = [
5234
5245
name = " tier-check"
5235
5246
version = " 0.1.0"
5236
5247
5237
- [[package ]]
5238
- name = " tikv-jemalloc-sys"
5239
- version = " 0.4.1+5.2.1-patched"
5240
- source = " registry+https://github.com/rust-lang/crates.io-index"
5241
- checksum = " 8a26331b05179d4cb505c8d6814a7e18d298972f0a551b0e3cefccff927f86d3"
5242
- dependencies = [
5243
- " cc" ,
5244
- " fs_extra" ,
5245
- " libc" ,
5246
- ]
5247
-
5248
5248
[[package ]]
5249
5249
name = " time"
5250
5250
version = " 0.1.43"
Original file line number Diff line number Diff line change @@ -10,13 +10,13 @@ rustc_driver = { path = "../rustc_driver" }
10
10
# crate is intended to be used by codegen backends, which may not be in-tree.
11
11
rustc_codegen_ssa = { path = " ../rustc_codegen_ssa" }
12
12
13
- [dependencies .tikv- jemalloc-sys ]
14
- version = ' 0.4.0 '
13
+ [dependencies .jemalloc-sys ]
14
+ version = " 0.5.0 "
15
15
optional = true
16
16
features = [' unprefixed_malloc_on_supported_platforms' ]
17
17
18
18
[features ]
19
- jemalloc = [' tikv- jemalloc-sys' ]
19
+ jemalloc = [' jemalloc-sys' ]
20
20
llvm = [' rustc_driver/llvm' ]
21
21
max_level_info = [' rustc_driver/max_level_info' ]
22
22
rustc_use_parallel_compiler = [' rustc_driver/rustc_use_parallel_compiler' ]
Original file line number Diff line number Diff line change 22
22
// The two crates we link to here, `std` and `rustc_driver`, are both dynamic
23
23
// libraries. So we must reference jemalloc symbols one way or another, because
24
24
// this file is the only object code in the rustc executable.
25
- #[ cfg( feature = "tikv-jemalloc-sys" ) ]
26
- use tikv_jemalloc_sys as jemalloc_sys;
27
25
28
26
fn main ( ) {
29
27
// See the comment at the top of this file for an explanation of this.
30
- #[ cfg( feature = "tikv- jemalloc-sys" ) ]
28
+ #[ cfg( feature = "jemalloc-sys" ) ]
31
29
{
32
30
use std:: os:: raw:: { c_int, c_void} ;
33
31
Original file line number Diff line number Diff line change @@ -70,9 +70,7 @@ extern crate test;
70
70
// See docs in https://github.com/rust-lang/rust/blob/master/compiler/rustc/src/main.rs
71
71
// about jemalloc.
72
72
#[ cfg( feature = "jemalloc" ) ]
73
- extern crate tikv_jemalloc_sys;
74
- #[ cfg( feature = "jemalloc" ) ]
75
- use tikv_jemalloc_sys as jemalloc_sys;
73
+ extern crate jemalloc_sys;
76
74
77
75
use std:: default:: Default ;
78
76
use std:: env:: { self , VarError } ;
You can’t perform that action at this time.
0 commit comments