This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Does GCC support TLS or SEH?
- From: Jonathan Wilson <jonwil at tpgi dot com dot au>
- To: gcc at gcc dot gnu dot org
- Date: Mon, 01 Sep 2003 09:58:46 +0800
- Subject: Does GCC support TLS or SEH?
Does the GCC core contain support for Thread Local Storage or Structured
Exception Handling?
I would like to see if it is fesable to implement windows specific TLS and
SEH and if there is some sort of hooks in the GCC core already, it would
make it easier.
Both Watcom and Microsofts linkers have a feature used for constructors and
also for TLS whereby a segment named .tls, a segment named .tls$ and a
segment named .tls$$$ will be combined into 1 segment called .tls with .tls
first then .tls$ and .tls$$$
Does the GCC linker have a similar feature?
If not, how does GCC handle constructors?