<div dir="ltr"><div>What is the proper way to have a variable common between two custom-defined sections?</div><div><br></div><div>Example:</div><div><br></div>  .global foo1<br>  .section .text.foo1, "ax"<br>foo1:<br>  ldr w0, FooValue<br>  ret<br><br>  .global foo2<br>  .section .text.foo2, "ax"<br>foo2:<br>  ldr w0, FooValue<br>  ret<br><br><div>FooValue: .word 0x00</div><div><br></div><div>This generates "unsupported relocation type: fixup_aarch64_ldr_pcrel_imm19".  If I comment out the first ldr line, it builds, as FooValue is part of .text.foo2.</div><div><br></div><div>If I define FooValue twice, once for each section it complains it's already defined.</div><div><br></div><div><br></div><div>Joel<br></div><div><br></div></div>