This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug dynamic-link/14370] ld.so crashes on mismatched TLS/non-TLS symbols


https://sourceware.org/bugzilla/show_bug.cgi?id=14370

Ondrej Bilka <neleai at seznam dot cz> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |neleai at seznam dot cz

--- Comment #24 from Ondrej Bilka <neleai at seznam dot cz> ---
What about test like this one which generates 1000 trivial dependencies?

cat "int TEST(){return 42;}" > test.c
cat "int main(){return 42;}" > main.c
for I in `seq 1 1000`; do
  gcc test.c -DTEST=test$I -fpic -shared -o libtest$I.so
  DL="$DL -ltest$I"
done
gcc main.c -L. $DL

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]