Component: gold
Assignee: ccoutant at gmail dot com
Reporter: eugeni.stepanov at gmail dot com
CC: ian at airs dot com
Target Milestone: ---
$ cat 1.c
void f() {}
int main() {}
$ clang -flto -O0 1.c -fuse-ld=gold -Wl,--export-dynamic-symbol=f
-Wl,-plugin-opt
https://sourceware.org/bugzilla/show_bug.cgi?id=19002
--- Comment #6 from Evgeniy Stepanov ---
The bfd linker warning about not being able to build .eh_frame_hdr was very
useful for me.
--
You are receiving this mail because:
You are on the CC list for the bug.
_
https://sourceware.org/bugzilla/show_bug.cgi?id=19002
--- Comment #4 from Evgeniy Stepanov ---
Thank you, Cary!
--
You are receiving this mail because:
You are on the CC list for the bug.
___
bug-binutils mailing list
bug-binutils@gnu.org
https://list
https://sourceware.org/bugzilla/show_bug.cgi?id=19002
Evgeniy Stepanov changed:
What|Removed |Added
CC||eugeni.stepanov at gmail dot
com
https://sourceware.org/bugzilla/show_bug.cgi?id=19169
--- Comment #2 from Evgeniy Stepanov ---
It appears that this is a bug in the bionic linker which incorrectly loads the
addend for RELA relocations from the relocated address.
See https://sourceware.org/bugzilla/show_bug.cgi?id=19163
The bug
https://sourceware.org/bugzilla/show_bug.cgi?id=19169
--- Comment #1 from Evgeniy Stepanov ---
Oh,
> 2040 1820
This is actually 0x2018, which is the VMA of "A".
So this points to A+A, which is definitely wrong.
--
You are receiving this mail because:
You are on the CC list for the
Assignee: ccoutant at gmail dot com
Reporter: eugeni.stepanov at gmail dot com
CC: ian at airs dot com
Target Milestone: ---
The following code, when placed in a non-symbolically linked shared library,
fails on Android/AArch64 when linked with gold.
int A[10] = {1, 0
https://sourceware.org/bugzilla/show_bug.cgi?id=18859
--- Comment #4 from Evgeniy Stepanov ---
Thank you!
--wrap does not work for prebuilt shared libraries, and we need to intercept at
least some functions in those, too (ex. malloc).
--
You are receiving this mail because:
You are on the CC l
https://sourceware.org/bugzilla/show_bug.cgi?id=18859
--- Comment #2 from Evgeniy Stepanov ---
There is some context here:
https://llvm.org/bugs/show_bug.cgi?id=15823
In the clang driver, we add a static library that implements wrappers for
libutil functions, i.e. it exports functions with the s
Component: gold
Assignee: ccoutant at gmail dot com
Reporter: eugeni.stepanov at gmail dot com
CC: ian at airs dot com
Target Milestone: ---
Gold and ld behave differently when a shared library is first mentioned when
-as-needed is in effect, and then again after
Assignee: ccoutant at gmail dot com
Reporter: eugeni.stepanov at gmail dot com
CC: ian at airs dot com
Target Milestone: ---
The BFD linker has a -long-plt option to generate 16-byte PLT entries that are
capable of addressing GOT at arbitrary offset. Gold only
: normal
Priority: P2
Component: gold
Assignee: ian at airs dot com
Reporter: eugeni.stepanov at gmail dot com
CC: ccoutant at google dot com
$ cat z.cc
extern "C" void f() {}
int main() { return 0; }
$ cat z.syms
{
f;
};
$ g++ z.c
12 matches
Mail list logo