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