We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a6cc2d commit 62ba972Copy full SHA for 62ba972
ch1-lab/build.rs
@@ -10,8 +10,7 @@ fn main() {
10
const LINKER: &[u8] = b"
11
OUTPUT_ARCH(riscv)
12
SECTIONS {
13
- . = 0x80200000;
14
- .text : {
+ .text 0x80200000 : {
15
*(.text.entry)
16
*(.text .text.*)
17
}
ch1/build.rs
linker/src/lib.rs
@@ -40,9 +40,8 @@ pub use app::{AppIterator, AppMeta};
40
pub const SCRIPT: &[u8] = b"\
41
42
43
44
- __start = .;
45
+ __start = .;
46
47
48
0 commit comments