diff options
author | rpj <rpj> | 1998-12-06 04:42:29 +0000 |
---|---|---|
committer | rpj <rpj> | 1998-12-06 04:42:29 +0000 |
commit | a7d47499d89932fa74932fef5af9b046227788de (patch) | |
tree | 986bad2b5ee7b52cabff02d0620980315ed6c8b1 /buildlib.bat | |
parent | e17bb90f17f0530bc74a3e463b8ea9eedfaae01f (diff) |
Sun Dec 6 21:54:35 1998 Ross Johnson <rpj@ixobrychus.canberra.edu.au>
* buildlib.bat: Fix args to CL when building the .DLL
* cleanup.c (_pthread_destructor_run_all): Fix TSD key management.
This is a tidy-up before TSD and Thread management is completely
replaced by John Bossom's much more elegant code.
* tsd.c (pthread_key_create): Fix TSD key management.
* global.c (_pthread_key_virgin_next): Initialise.
* build.bat: New DOS script to compile and link a pthreads app
using Microsoft's CL compiler linker.
* buildlib.bat: New DOS script to compile all the object files
and create pthread.lib and pthread.dll using Microsoft's CL
compiler linker.
Diffstat (limited to 'buildlib.bat')
-rw-r--r-- | buildlib.bat | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildlib.bat b/buildlib.bat index e1005f0..e8a674e 100644 --- a/buildlib.bat +++ b/buildlib.bat @@ -17,4 +17,4 @@ cl /W3 /MT /nologo /Yd /Zi -I. -D_WIN32_WINNT=0x400 -DSTDCALL=_stdcall -c signal cl /W3 /MT /nologo /Yd /Zi -I. -D_WIN32_WINNT=0x400 -DSTDCALL=_stdcall -c sync.c cl /W3 /MT /nologo /Yd /Zi -I. -D_WIN32_WINNT=0x400 -DSTDCALL=_stdcall -c tsd.c -cl /LD /Zi *.obj /Fe$@ /link /nodefaultlib:libcmt /implib:pthread.lib msvcrt.lib /def:pthread.def +cl /LD /Zi *.obj /Fepthread.dll /link /nodefaultlib:libcmt /implib:pthread.lib msvcrt.lib /def:pthread.def |