File tree Expand file tree Collapse file tree 4 files changed +7
-5
lines changed
Expand file tree Collapse file tree 4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ goto build_vc
5151
5252:build_sdk
5353set PATH = %OPATH%
54+ set SUBSYS = " 5.01"
5455call " C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
5556call " C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /ia64 /xp
5657set OUTDIR = %APPVEYOR_BUILD_FOLDER% \bin-%VC% -ia64
@@ -60,14 +61,17 @@ goto %NEXT%
6061:build_vc
6162FOR /R .\ %%d IN (ARM X64 O) DO rd /S /Q %%d 2 > NUL
6263set PATH = %OPATH%
64+ set SUBSYS = " 5.01"
6365call " C:\Program Files (x86)\Microsoft Visual Studio %VC% \VC\vcvarsall.bat" x86
6466set OUTDIR = %APPVEYOR_BUILD_FOLDER% \bin-%VC% -x32
6567call build-x32.cmd
6668set PATH = %OPATH%
69+ set SUBSYS = " 5.02"
6770call " C:\Program Files (x86)\Microsoft Visual Studio %VC% \VC\vcvarsall.bat" x86_amd64
6871set OUTDIR = %APPVEYOR_BUILD_FOLDER% \bin-%VC% -x64
6972call build-x64.cmd
7073set PATH = %OPATH%
74+ set SUBSYS = " 6.02"
7175call " C:\Program Files (x86)\Microsoft Visual Studio %VC% \VC\vcvarsall.bat" x86_arm
7276set OUTDIR = %APPVEYOR_BUILD_FOLDER% \bin-%VC% -arm
7377call build-arm.cmd
Original file line number Diff line number Diff line change 11@ echo off
22
33set ROOT = %cd% \7zip
4- if not defined OUTDIR set OUTDIR = %ROOT% \binArm
4+ if not defined OUTDIR set OUTDIR = %ROOT% \binArm
55if not defined ERRFILE set ERRFILE = %cd% \error.txt
66mkdir %OUTDIR%
77
Original file line number Diff line number Diff line change 11@ echo off
22
33set ROOT = %cd% \7zip
4- if not defined OUTDIR set OUTDIR = %ROOT% \bin32
4+ if not defined OUTDIR set OUTDIR = %ROOT% \bin32
55if not defined ERRFILE set ERRFILE = %cd% \error.txt
6- if not defined SUBSYS set SUBSYS = " 5.01"
76mkdir %OUTDIR%
87
98set OPTS = MY_STATIC_LINK=1 /NOLOGO
Original file line number Diff line number Diff line change 11@ echo off
22
33set ROOT = %cd% \7zip
4- if not defined OUTDIR set OUTDIR = %ROOT% \bin64
4+ if not defined OUTDIR set OUTDIR = %ROOT% \bin64
55if not defined ERRFILE set ERRFILE = %cd% \error.txt
6- if not defined SUBSYS set SUBSYS = " 5.02"
76mkdir %OUTDIR%
87
98set OPTS = PLATFORM=x64 MY_STATIC_LINK=1 /NOLOGO
You can’t perform that action at this time.
0 commit comments