sysdeps/i386/elf/configure.in

Jakub Jelinek jakub@redhat.com
Sun Feb 3 23:15:00 GMT 2002


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



More information about the Libc-hacker mailing list