Skip to content

Commit 4920c6a

Browse files
committed
Use lld instead of avr-gcc as the linker
This fixes the [build error] caused by the `avr-gcc` (used as linker) not being available in the Rust CI. This is a viable solution, which shows the wrong/right behavior and, since no functions from `libgcc` are called, does not produce errors. This was discussed [here]. Another small problem is, that `lld` doesn't link the correct startup-code by default. This is not a problem for this test (since it does not actually use anything the startup code is needed for (no variables, no stack, no interrupts)), but this causes the `main`-function to be removed by the default flag `--gc-sections`. Therefore the `rmake`-driver also adds the linker flag `--entry=main` to mark the `main`-function as the entry point and thus preventing it from getting removed. The code would work on a real AVR device. [build error]: #131755 (comment) [here]: #131755 (comment)
1 parent 1d16289 commit 4920c6a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/run-make/avr-rjmp-offset/rmake.rs

+8
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,13 @@ fn main() {
1717
.opt_level("s")
1818
.panic("abort")
1919
.target("avr-unknown-gnu-atmega328")
20+
// normally one links with `avr-gcc`, but this is not available in CI,
21+
// hence this test diverges from the default behavior to enable linking
22+
// at all, which is necessary for the test (to resolve the labels). To
23+
// not depend on a special linker script, the main-function is marked as
24+
// the entry function, causing the linker to not remove it.
25+
.linker("lld")
26+
.link_arg("--entry=main")
2027
.output("compiled")
2128
.run();
2229

@@ -35,6 +42,7 @@ fn main() {
3542
// fore the relative jump has an impact on the label offset. Old versions
3643
// of the Rust compiler did produce a label `rjmp .-4` (misses the first
3744
// instruction in the loop).
45+
assert!(disassembly.contains("<main>"), "no main function in output");
3846
disassembly
3947
.trim()
4048
.lines()

0 commit comments

Comments
 (0)