diff options
author | marha <marha@users.sourceforge.net> | 2011-07-18 11:19:04 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-07-18 11:19:04 +0200 |
commit | 65de5cf5e6d4f758c47775eb6a086c4810253873 (patch) | |
tree | ef612ef5a3747251fa95ab9f7e4565307715594a /pthreads | |
parent | b41987f95123439cdaa4d820cf2e2b7634e78f67 (diff) | |
download | vcxsrv-65de5cf5e6d4f758c47775eb6a086c4810253873.tar.gz vcxsrv-65de5cf5e6d4f758c47775eb6a086c4810253873.tar.bz2 vcxsrv-65de5cf5e6d4f758c47775eb6a086c4810253873.zip |
Solved compile warnings1.10.3.1
Diffstat (limited to 'pthreads')
-rw-r--r-- | pthreads/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pthreads/Makefile b/pthreads/Makefile index ce762315b..dcf1c76bb 100644 --- a/pthreads/Makefile +++ b/pthreads/Makefile @@ -28,7 +28,7 @@ CC = cl CPPFLAGS = /I. /DHAVE_PTW32_CONFIG_H XCFLAGS = /W3 /Zi /Gy /GF /nologo CFLAGS = /O2 /Ob2 /Oi /Ox /Oy /Ot /MD /GL $(XCFLAGS) -CFLAGSD = /Z7 /MDd $(XCFLAGS) +CFLAGSD = /MDd $(XCFLAGS) # Uncomment this if config.h defines RETAIN_WSALASTERROR @@ -490,7 +490,7 @@ $(INLINED_STAMPS): $(OUTDIR) $(DLL_INLINED_OBJS) $(STATIC_STAMPS): $(OUTDIR) $(DLL_INLINED_OBJS) if exist $*.lib del $*.lib - lib $(DLL_INLINED_OBJS) /out:$*.lib + lib /LTCG $(DLL_INLINED_OBJS) /out:$*.lib $(OUTDIR): mkdir $(OUTDIR) |