mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-10 10:07:13 -06:00
Add some minor fixes
- add README.md for the hash sources - do not compile IA64 binaries: - the flzma2 does not compile cleanly - /Gw is not implemented within sdk 7.1 :/
This commit is contained in:
4
C/hashes/README.md
Normal file
4
C/hashes/README.md
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
|
||||||
|
Taken from lib/crypto/* of samba-4.5.8.tar.gz.
|
||||||
|
|
||||||
|
/TR 2018-11-15
|
||||||
@@ -1,10 +1,10 @@
|
|||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
REM Microsoft Windows SDK 7.1 (VC=sdk71)
|
REM Microsoft Windows SDK 7.1 (VC=sdk71) -> can compile for IA64, but who needs that?
|
||||||
REM Microsoft Visual Studio 2010 (VC=10.0)
|
REM Microsoft Visual Studio 2010 (VC=10.0)
|
||||||
REM Microsoft Visual Studio 2012 (VC=11.0)
|
REM Microsoft Visual Studio 2012 (VC=11.0)
|
||||||
REM Microsoft Visual Studio 2013 (VC=12.0)
|
REM Microsoft Visual Studio 2013 (VC=12.0)
|
||||||
REM Microsoft Visual Studio 2015 (VC=14.0)
|
REM Microsoft Visual Studio 2015 (VC=14.0) -> for: x32 + x64
|
||||||
REM Microsoft Visual Studio 2017 (VC=15.0)
|
REM Microsoft Visual Studio 2017 (VC=15.0)
|
||||||
|
|
||||||
REM to many vcvarsall.cmd calls will blow it up!
|
REM to many vcvarsall.cmd calls will blow it up!
|
||||||
@@ -12,33 +12,33 @@ set OPATH=%PATH%
|
|||||||
set ERRFILE=%APPVEYOR_BUILD_FOLDER%\error.txt
|
set ERRFILE=%APPVEYOR_BUILD_FOLDER%\error.txt
|
||||||
cd %APPVEYOR_BUILD_FOLDER%\CPP
|
cd %APPVEYOR_BUILD_FOLDER%\CPP
|
||||||
|
|
||||||
REM I am using sdk71 and 12.0 for releases... /TR
|
REM I am using VC 14.0 for releases now... /TR 2018-11-15
|
||||||
|
goto vc14
|
||||||
|
|
||||||
:sdk71
|
:sdk71
|
||||||
set VC=sdk71
|
set VC=sdk71
|
||||||
set NEXT=vc12
|
set NEXT=vc14
|
||||||
goto build_sdk
|
goto build_sdk
|
||||||
|
|
||||||
:vc11
|
:vc11
|
||||||
set VC=11.0
|
set VC=11.0
|
||||||
set NEXT=vc12
|
set NEXT=vc12
|
||||||
goto build
|
goto build_vc
|
||||||
|
|
||||||
:vc12
|
:vc12
|
||||||
set VC=12.0
|
set VC=12.0
|
||||||
set CFLAGS=-Gw
|
|
||||||
set NEXT=end
|
set NEXT=end
|
||||||
goto build
|
goto build_vc
|
||||||
|
|
||||||
:vc14
|
:vc14
|
||||||
set VC=14.0
|
set VC=14.0
|
||||||
set NEXT=end
|
set NEXT=end
|
||||||
goto build
|
goto build_vc
|
||||||
|
|
||||||
|
|
||||||
:build
|
:build_vc
|
||||||
FOR /R .\ %%d IN (AMD64 O) DO rd /S /Q %%d 2>NUL
|
|
||||||
set PATH=%OPATH%
|
set PATH=%OPATH%
|
||||||
|
FOR /R .\ %%d IN (AMD64 O) DO rd /S /Q %%d 2>NUL
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio %VC%\VC\vcvarsall.bat" x86
|
call "C:\Program Files (x86)\Microsoft Visual Studio %VC%\VC\vcvarsall.bat" x86
|
||||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x32
|
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x32
|
||||||
call build-x32.cmd
|
call build-x32.cmd
|
||||||
@@ -50,12 +50,6 @@ goto %NEXT%
|
|||||||
:build_sdk
|
:build_sdk
|
||||||
set PATH=%OPATH%
|
set PATH=%OPATH%
|
||||||
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
|
call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" x86
|
||||||
REM call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x86 /xp
|
|
||||||
REM set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x32
|
|
||||||
REM call build-x32.cmd
|
|
||||||
REM call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /x64 /xp
|
|
||||||
REM set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-x64
|
|
||||||
REM call build-x64.cmd
|
|
||||||
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /ia64 /xp
|
call "C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /Release /ia64 /xp
|
||||||
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-ia64
|
set OUTDIR=%APPVEYOR_BUILD_FOLDER%\bin-%VC%-ia64
|
||||||
call build-ia64.cmd
|
call build-ia64.cmd
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ set ROOT=%cd%\7zip
|
|||||||
if not defined OUTDIR set OUTDIR=%ROOT%\binIA64
|
if not defined OUTDIR set OUTDIR=%ROOT%\binIA64
|
||||||
mkdir %OUTDIR%
|
mkdir %OUTDIR%
|
||||||
|
|
||||||
set OPTS=CPU=IA64 MY_STATIC_LINK=1 /NOLOGO /TP
|
set OPTS=CPU=IA64 MY_STATIC_LINK=1 /NOLOGO
|
||||||
set LFLAGS=/SUBSYSTEM:WINDOWS,"5.02"
|
set LFLAGS=/SUBSYSTEM:WINDOWS,"5.02"
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Format7zExtract
|
cd %ROOT%\Bundles\Format7zExtract
|
||||||
|
|||||||
Reference in New Issue
Block a user