File tree Expand file tree Collapse file tree 6 files changed +22
-12
lines changed
compiler/rustc_target/src/spec/base Expand file tree Collapse file tree 6 files changed +22
-12
lines changed Original file line number Diff line number Diff line change @@ -3145,7 +3145,7 @@ dependencies = [
3145
3145
[[package ]]
3146
3146
name = " rustc-build-sysroot"
3147
3147
version = " 0.5.3"
3148
- source = " git+https://github.com/anza-xyz/rustc-build-sysroot?tag=solana-tools-v1.49#9b36c221db90c5039463c572ccbb903972bda8ce "
3148
+ source = " git+https://github.com/anza-xyz/rustc-build-sysroot?tag=solana-tools-v1.50#932133f4069426f6b394a82c011c9fdf08b300ff "
3149
3149
dependencies = [
3150
3150
" anyhow" ,
3151
3151
" rustc_version" ,
Original file line number Diff line number Diff line change @@ -54,12 +54,7 @@ SECTIONS
54
54
_heap_end = .;
55
55
. = ALIGN(8);
56
56
} :heap
57
- .dynsym 0xFFFFFFFF00000000 : {
58
- *(.dynsym)
59
- . = ALIGN(8);
60
- } :dynsym
61
57
.strtab : { *(.strtab) } :other
62
- .dynstr : { *(.dynstr) } :other
63
58
/DISCARD/ : {
64
59
*(.comment*)
65
60
*(.eh_frame*)
@@ -68,15 +63,16 @@ SECTIONS
68
63
*(.data*)
69
64
*(.rel.dyn*)
70
65
*(.dynamic)
66
+ *(.dynsym)
67
+ *(.dynstr)
71
68
}
72
69
}
73
70
PHDRS
74
71
{
75
72
text PT_LOAD FLAGS(1);
76
73
rodata PT_LOAD FLAGS(4);
77
- stack PT_GNU_STACK FLAGS(6);
74
+ stack PT_LOAD FLAGS(6);
78
75
heap PT_LOAD FLAGS(6);
79
- dynsym PT_NULL FLAGS(0);
80
76
other PT_NULL FLAGS(0);
81
77
}
82
78
" ;
Original file line number Diff line number Diff line change @@ -61,4 +61,3 @@ rustc-std-workspace-core = { path = 'rustc-std-workspace-core' }
61
61
rustc-std-workspace-alloc = { path = ' rustc-std-workspace-alloc' }
62
62
rustc-std-workspace-std = { path = ' rustc-std-workspace-std' }
63
63
compiler_builtins = { path = " compiler-builtins/compiler-builtins" }
64
-
Original file line number Diff line number Diff line change 153
153
<< : *job-linux-4c
154
154
- name : x86_64-gnu-miri
155
155
<< : *job-linux-4c
156
+ - image : sbf-solana-solana
157
+ continue_on_error : true
158
+ << : *job-linux-4c
159
+ - image : sbpf-solana-solana
160
+ continue_on_error : true
161
+ << : *job-linux-4c
162
+ - image : sbpfv1-solana-solana
163
+ continue_on_error : true
164
+ << : *job-linux-4c
165
+ - image : sbpfv2-solana-solana
166
+ continue_on_error : true
167
+ << : *job-linux-4c
168
+ # - image: sbpfv3-solana-solana
169
+ # continue_on_error: true
170
+ # <<: *job-linux-4c
156
171
157
172
# Jobs that run when you perform a try build (@bors try)
158
173
# These jobs automatically inherit envs.try, to avoid repeating
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ directories = "6"
18
18
rustc_version = " 0.4"
19
19
serde_json = " 1.0.40"
20
20
cargo_metadata = " 0.19"
21
- rustc-build-sysroot = {git = " https://github.com/anza-xyz/rustc-build-sysroot" , tag = " solana-tools-v1.49 " }
21
+ rustc-build-sysroot = {git = " https://github.com/anza-xyz/rustc-build-sysroot" , tag = " solana-tools-v1.50 " }
22
22
23
23
# Enable some feature flags that dev-dependencies need but dependencies
24
24
# do not. This makes `./miri install` after `./miri build` faster.
Original file line number Diff line number Diff line change @@ -8,8 +8,8 @@ const ALLOWED_SOURCES: &[&str] = &[
8
8
r#""registry+https://github.com/rust-lang/crates.io-index""# ,
9
9
// This is `rust_team_data` used by `site` in src/tools/rustc-perf,
10
10
r#""git+https://github.com/rust-lang/team#a5260e76d3aa894c64c56e6ddc8545b9a98043ec""# ,
11
- r#""git+https://github.com/anza-xyz/compiler-builtins?tag=solana-tools-v1.49 #759adff89713678bfd9c7630fe0f60088f635085""# ,
12
- r#""git+https://github.com/anza-xyz/rustc-build-sysroot?tag=solana-tools-v1.49#9b36c221db90c5039463c572ccbb903972bda8ce ""#
11
+ r#""git+https://github.com/anza-xyz/compiler-builtins?tag=solana-tools-v1.50 #759adff89713678bfd9c7630fe0f60088f635085""# ,
12
+ r#""git+https://github.com/anza-xyz/rustc-build-sysroot?tag=solana-tools-v1.50#932133f4069426f6b394a82c011c9fdf08b300ff ""#
13
13
] ;
14
14
15
15
/// Checks for external package sources. `root` is the path to the directory that contains the
You can’t perform that action at this time.
0 commit comments