Lines Matching +full:x86 +full:- +full:windows
3 REM Use old Windows SDK 6.1 so created .exe will be compatible with
4 REM old Windows versions.
5 REM Windows SDK 6.1 may be downloaded at:
6 REM http://www.microsoft.com/en-us/download/details.aspx?id=11310
11 set PATH=C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\bin;%PATH%
13 REM set up the environment to compile to x86
16 …/D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:CONSOLE /out:setuptools/cli-…
17 …/D "WIN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x86 /SUBSYSTEM:WINDOWS /out:setuptools/gui-…
19 echo Windows SDK 6.1 not found to build Windows 32-bit version
23 REM the 32-bit launcher scripts without the -32 in the filename, so copy them
25 copy setuptools/cli-32.exe setuptools/cli.exe
26 copy setuptools/gui-32.exe setuptools/gui.exe
28 REM now for 64-bit
29 REM Use the x86_amd64 profile, which is the 32-bit cross compiler for amd64
32 …IN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:CONSOLE /out:setuptools/cli-64.exe
33 …IN32_LEAN_AND_MEAN" launcher.c /O2 /link /MACHINE:x64 /SUBSYSTEM:WINDOWS /out:setuptools/gui-64.exe
35 echo Windows SDK 6.1 not found to build Windows 64-bit version