diff options
author | Olivier Hainque <hainque@adacore.com> | 2017-08-07 20:13:53 +0000 |
---|---|---|
committer | Olivier Hainque <hainque@gcc.gnu.org> | 2017-08-07 20:13:53 +0000 |
commit | 0cbfcdf46fa0d7eb339e338975997d2b34563677 (patch) | |
tree | 324c5ce71a216efd94ad37935bc0e4d77a391c51 /gcc | |
parent | 664650989a1623935155077e3ad222ed1b9b7a75 (diff) | |
download | gcc-0cbfcdf46fa0d7eb339e338975997d2b34563677.zip gcc-0cbfcdf46fa0d7eb339e338975997d2b34563677.tar.gz gcc-0cbfcdf46fa0d7eb339e338975997d2b34563677.tar.bz2 |
Olivier Hainque <hainque@adacore.com>
PR target/81755
* config/vxworksae.h (VXWORKS_HAVE_TLS): Define.
From-SVN: r250931
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/config/vxworksae.h | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 091cbb1..596dd57 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +Olivier Hainque <hainque@adacore.com> + + PR target/81755 + * config/vxworksae.h (VXWORKS_HAVE_TLS): Define. + 2017-08-07 Douglas Rupp <rupp@adacore.com> * Makefile.in (install-mkheaders): Fix typo, where the multi_dir diff --git a/gcc/config/vxworksae.h b/gcc/config/vxworksae.h index 7e65907..3b0b652 100644 --- a/gcc/config/vxworksae.h +++ b/gcc/config/vxworksae.h @@ -68,6 +68,10 @@ along with GCC; see the file COPYING3. If not see while (0) /* Do VxWorks-specific parts of TARGET_OPTION_OVERRIDE. */ + +/* None of the VxWorks AE/653/MILS ports to date has native TLS support. */ +#define VXWORKS_HAVE_TLS 0 + #undef VXWORKS_OVERRIDE_OPTIONS #define VXWORKS_OVERRIDE_OPTIONS vxworks_override_options () extern void vxworks_override_options (void); |