Comment # 2 on bug 1208386 from
It comes from AddressSanitizer that generates an artificial global symbol that
has location equal to the ltrans unit:

$ cat jhead.i
int foo;

$ gcc -O2 -fsanitize=address -flto=auto jhead.i -shared -fPIC -fdump-tree-all
-o jhead --save-temps --verbose
...
.LC2:
    .string    "./jhead.ltrans0.o"
    .section    .data.rel,"aw"
    .align 32
    .type    .LASAN0.2, @object
    .size    .LASAN0.2, 64
.LASAN0.2:
    .quad    .LASAN1.0
    .quad    4
    .quad    64
    .quad    .LC1
    .quad    .LC2

Anyway. ASAN is not something we should enable for openSUSE packages. It's for
development purposes. Lemme fix that.


You are receiving this mail because: