This is the mail archive of the libc-hacker@sources.redhat.com mailing list for the glibc project.

Note that libc-hacker is a closed list. You may look at the archives of this list, but subscription and posting are not open.


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

sysdeps/i386/elf/configure.in


Hi!

        .section ".tbss", "awT", @nobits
        .comm   bar,4,4

will not create bar as STT_TLS symbol in .tbss.
Either
	.section ".tbss", "awT", @nobits
	.globl bar
bar:	.skip	4

or (but not yet implemented) the Sun way:
	.tls_common bar,4,4

	Jakub


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