diff options
author | Robert Lipe <robertl@gcc.gnu.org> | 2000-01-12 16:31:32 +0000 |
---|---|---|
committer | Robert Lipe <robertl@gcc.gnu.org> | 2000-01-12 16:31:32 +0000 |
commit | 66959c63a6ef9d982984ca8f68f4710dbf823ed9 (patch) | |
tree | 84e5f6faec988c675c9b203e4b1ee9cd8d695738 | |
parent | 9e3a9cf21e21f7bc33c9cf7082e6185a4f19a919 (diff) | |
download | gcc-66959c63a6ef9d982984ca8f68f4710dbf823ed9.zip gcc-66959c63a6ef9d982984ca8f68f4710dbf823ed9.tar.gz gcc-66959c63a6ef9d982984ca8f68f4710dbf823ed9.tar.bz2 |
* sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
From-SVN: r31353
-rw-r--r-- | gcc/config/i386/sysv5.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/config/i386/sysv5.h b/gcc/config/i386/sysv5.h index 09a3bbe..8c4ac62 100644 --- a/gcc/config/i386/sysv5.h +++ b/gcc/config/i386/sysv5.h @@ -29,7 +29,8 @@ Boston, MA 02111-1307, USA. */ /* Add -lcrt for Dwarf2 abbreviation table */ #undef LIB_SPEC -#define LIB_SPEC "%{pthread:-lthread} %{!shared:%{!symbolic:-lc -lcrt}}" +#define LIB_SPEC "%{pthread:-lthread} %{pthreadT:-lthreadT} \ + %{!shared:%{!symbolic:-lc -lcrt}}" #undef CPP_SPEC -#define CPP_SPEC "%{pthread:-D_REENTRANT}" +#define CPP_SPEC "%{pthread:-D_REENTRANT} %{pthreadT:-D_REENTRANT}" |