diff options
author | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-12 16:31:32 +0000 |
---|---|---|
committer | robertl <robertl@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-01-12 16:31:32 +0000 |
commit | d781a65efa9970454c80e9fd3c376f8be869a3b0 (patch) | |
tree | 84e5f6faec988c675c9b203e4b1ee9cd8d695738 /gcc/config/i386/sysv5.h | |
parent | cab048af0241da9c2c5ef189884cedfc3a74947b (diff) | |
download | gcc-d781a65efa9970454c80e9fd3c376f8be869a3b0.tar.gz |
* sysv5.h (CPP_SPEC, LIBSPEC): Add -pthreadT.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@31353 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/config/i386/sysv5.h')
-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 09a3bbefc0c..8c4ac625948 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}" |