diff options
author | marha <marha@users.sourceforge.net> | 2011-01-31 13:24:04 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2011-01-31 13:24:04 +0000 |
commit | 6751d9898be671d253d6f7b0806cd4b10daaaf85 (patch) | |
tree | 23d7de97c118844b449b6c2102bc01b1385db39b /pthreads | |
parent | 605c2377adb51f3fc7105ee92c4fb773b26d7f9b (diff) | |
download | vcxsrv-6751d9898be671d253d6f7b0806cd4b10daaaf85.tar.gz vcxsrv-6751d9898be671d253d6f7b0806cd4b10daaaf85.tar.bz2 vcxsrv-6751d9898be671d253d6f7b0806cd4b10daaaf85.zip |
Enabled global optimisation in release build
winmain : GetEnvironmentStrings return should be freed with FreeEnvironmentStrings
Diffstat (limited to 'pthreads')
-rw-r--r-- | pthreads/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pthreads/Makefile b/pthreads/Makefile index eca5a6d00..0ec9f10ab 100644 --- a/pthreads/Makefile +++ b/pthreads/Makefile @@ -24,12 +24,12 @@ INLINED_STAMPS = pthreadVCE$(DLL_VER).stamp pthreadVSE$(DLL_VER).stamp pthreadVC STATIC_STAMPS = pthreadVCE$(DLL_VER).static pthreadVSE$(DLL_VER).static pthreadVC$(DLL_VER).static \
pthreadVCE$(DLL_VERD).static pthreadVSE$(DLL_VERD).static pthreadVC$(DLL_VERD).static
-OPTIM = /O2 /Ob2 /MD
+OPTIM = /O2 /Ob2 /Oi /Ox /Oy /Ot /MD /GL
OPTIMD = /MDd
-CFLAGS = /W3 /nologo /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H
+CFLAGS = /W3 /nologo /Gy /GF /Zi /I. /D_WIN32_WINNT=0x400 /DHAVE_CONFIG_H
-CFLAGSD = /Zi $(CFLAGS)
+CFLAGSD = $(CFLAGS)
# Uncomment this if config.h defines RETAIN_WSALASTERROR
#XLIBS = wsock32.lib
|