File tree 2 files changed +6
-1
lines changed
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -80,12 +80,15 @@ wat = "1.0"
80
80
map-physical-memory = true
81
81
map-page-table-recursively = true
82
82
map-framebuffer = true
83
+ # the kernel is mapped into the higher half of the virtual address space.
84
+ dynamic-range-start = " 0xFFFF_8000_0000_0000"
83
85
84
86
[patch .crates-io ]
85
87
# use `tracing` 0.2 from git
86
88
tracing = { git = " https://github.com/tokio-rs/tracing" }
87
89
tracing-core = { git = " https://github.com/tokio-rs/tracing" }
88
90
91
+
89
92
# Custom profile for Loom tests: enable release optimizations so that the loom
90
93
# tests are less slow, but don't disable debug assertions.
91
94
[profile .loom ]
Original file line number Diff line number Diff line change 13
13
"post-link-args" : {
14
14
"ld.lld" : [
15
15
" -z" ,
16
- " nostart-stop-gc"
16
+ " nostart-stop-gc" ,
17
+ " --image-base" ,
18
+ " 0xFFFF800000000000"
17
19
]
18
20
},
19
21
"panic-strategy" : " abort" ,
You can’t perform that action at this time.
0 commit comments