mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-05-09 08:25:44 +02:00
[GH-ISSUE #400] Bootloader does not compile with GCC 15 #186
Labels
No labels
bug
duplicate
easy
enhancement
enhancement
fixed
fixed
good first issue
hard
invalid
pull-request
wontfix
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Upsilon#186
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @tomlo76 on GitHub (Apr 18, 2026).
Original GitHub issue: https://github.com/UpsilonNumworks/Upsilon/issues/400
Hello,
Cross-compiling bootloader (at least for n0110) with gcc 15 leads to an error with the linker :
This can be reproduced by making the bootloader :
I asked an LLM chatbot and it answers me that the jump_to_firmware label in bootloader/jump_to_firmware.s (first linker error) must be specified as a function, proposing to add the following (lines 7 and 11) :
This change allows GCC to compile. If an ARM assembly developer can review it, I think it could be interesting to add this change to follow the last GCC versions.