Open
Description
We have an embedded project that groups different functions into different custom sections. If I have function A
in a custom section .ram_code
that references another function B
in the same section (through inline asm in my case), then the reference to B
instead refers to the jumptable entry for B
. This jump table is placed in .text.B
. The linker script used for this project places .text
very far away from .ram_code
leading to relocation R_RISCV_JAL out of range
.
I think the fix emitting jump tables per section in addition to per function type such that jump tables for functions in unique sections are in the same sections as those functions.