summaryrefslogtreecommitdiff
path: root/msvc-build-launcher.cmd
diff options
context:
space:
mode:
authorGrigory Petrov <grigory.v.p@gmail.com>2013-05-08 01:00:00 +0400
committerGrigory Petrov <grigory.v.p@gmail.com>2013-05-08 01:00:00 +0400
commit1d2487f58f4372466600b5f3c5845b65e3ebb4fd (patch)
tree57135e11db1fec7fe5de71ce327bc5c33bac605f /msvc-build-launcher.cmd
parent2c57e0c3f00c91b3893b60015a5e144a6d8970f1 (diff)
downloadpython-setuptools-bitbucket-1d2487f58f4372466600b5f3c5845b65e3ebb4fd.tar.gz
Fixed a (probably) bug with GUI windows launcher actually being
compiled as CONSOLE windows application. The "GUI=0" and "GUI=1" is a compiler definition that affects how compiled code will work (.py or .pyw file to launch etc). But executable type is defined by a linker and can be changed only via /SUBSYSTEM command-line key.
Diffstat (limited to 'msvc-build-launcher.cmd')
-rw-r--r--msvc-build-launcher.cmd8
1 files changed, 4 insertions, 4 deletions
diff --git a/msvc-build-launcher.cmd b/msvc-build-launcher.cmd
index fb5935c0..939fb656 100644
--- a/msvc-build-launcher.cmd
+++ b/msvc-build-launcher.cmd
@@ -11,8 +11,8 @@ set PATH=C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC;%PATH%
REM set up the environment to compile to x86
call VCVARSALL x86 >nul 2>&1
if "%ERRORLEVEL%"=="0" (
- cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /out:setuptools/cli-32.exe
- cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /out:setuptools/gui-32.exe
+ cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:CONSOLE /out:setuptools/cli-32.exe
+ cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:WINDOWS /out:setuptools/gui-32.exe
) else (
echo Visual Studio ^(Express^) 2008 not found to build Windows 32-bit version
)
@@ -20,8 +20,8 @@ if "%ERRORLEVEL%"=="0" (
REM now for 64-bit
call VCVARSALL x86_amd64 >nul 2>&1
if "%ERRORLEVEL%"=="0" (
- cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /out:setuptools/cli-64.exe
- cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /out:setuptools/gui-64.exe
+ cl /D "GUI=0" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:CONSOLE /out:setuptools/cli-64.exe
+ cl /D "GUI=1" /D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:WINDOWS /out:setuptools/gui-64.exe
) else (
echo Visual Studio ^(Express^) 2008 not found to build Windows 64-bit version
)