qualcomm/eld
eld should emit a diagnostic when LMA is unaligned
Aberta
#444 aberto em 6 de out. de 2025
diagnosticsgood first issue
Métricas do repositório
- Stars
- (254 estrelas)
- Métricas de merge de PR
- (Métricas PR pendentes)
Description
Currently eld does not emit a diagnostic if the LMA is unaligned
cat > 1.t << \!
SECTIONS {
.foo (0x208) : AT(0x201) { *(.text.foo) }
}
!
cat > 1.c << \!
int foo() { return 0; }
!
hexagon-clang -c 1.c -ffunction-sections
hexagon-link 1.o -T 1.t -Wlinker-script