Does .rela.rodata relocation apply to .rodata.str1?
07:46 31 Dec 2025

I am writing a convertor from Elf32 to Uniflex .r format.
Uniflex .r format does not have read-only data sections so I concat .data, .rodata and .rodata.str together. I apply:

.rela.text to .text    
.rela.data to .data  
.rela.rodata to .rodata  

Q: Are the relocation records for .rodata.str contained in .rela.rodata?
I was getting garbage addends when I tried applying to .rodata.str..

gcc sections relocation