mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-09 00:07:00 -06:00
LZ4 has only 12 levels now
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Copyright (c) 2016 Tino Reichardt
|
* Copyright (c) 2016 - 2017 Tino Reichardt
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
*
|
*
|
||||||
* This source code is licensed under the BSD-style license found in the
|
* This source code is licensed under the BSD-style license found in the
|
||||||
@@ -26,7 +26,7 @@ extern "C" {
|
|||||||
|
|
||||||
/* current maximum the library will accept */
|
/* current maximum the library will accept */
|
||||||
#define LZ4MT_THREAD_MAX 128
|
#define LZ4MT_THREAD_MAX 128
|
||||||
#define LZ4MT_LEVEL_MAX 16
|
#define LZ4MT_LEVEL_MAX 12
|
||||||
|
|
||||||
#define LZ4FMT_MAGICNUMBER 0x184D2204U
|
#define LZ4FMT_MAGICNUMBER 0x184D2204U
|
||||||
#define LZ4FMT_MAGIC_SKIPPABLE 0x184D2A50U
|
#define LZ4FMT_MAGIC_SKIPPABLE 0x184D2A50U
|
||||||
|
|||||||
@@ -1,65 +0,0 @@
|
|||||||
@echo on
|
|
||||||
|
|
||||||
set ROOT=%cd%\7zip
|
|
||||||
set OUTDIR=%ROOT%\bin64
|
|
||||||
mkdir %OUTDIR%
|
|
||||||
|
|
||||||
set OPTS=CPU=AMD64 MY_STATIC_LINK=1
|
|
||||||
set LFLAGS=/SUBSYSTEM:WINDOWS,"5.02"
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Format7z
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7za.dll %OUTDIR%\7za.dll
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Format7zF
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7z.dll %OUTDIR%\7z.dll
|
|
||||||
goto ende
|
|
||||||
|
|
||||||
cd %ROOT%\UI\FileManager
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7zFM.exe %OUTDIR%\7zFM.exe
|
|
||||||
|
|
||||||
cd %ROOT%\UI\GUI
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7zG.exe %OUTDIR%\7zG.exe
|
|
||||||
|
|
||||||
cd %ROOT%\UI\Explorer
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7-zip.dll %OUTDIR%\7-zip.dll
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\SFXWin
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7z.sfx %OUTDIR%\7z.sfx
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Codec_lz4
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\lz4.dll %OUTDIR%\lz4-x64.dll
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Codec_lz5
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\lz5.dll %OUTDIR%\lz5-x64.dll
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\Codec_zstdf
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\zstd.dll %OUTDIR%\zstd-x64.dll
|
|
||||||
|
|
||||||
cd %ROOT%\..\..\C\Util\7zipInstall
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7zipInstall.exe %OUTDIR%\Install-x64.exe
|
|
||||||
|
|
||||||
cd %ROOT%\..\..\C\Util\7zipUninstall
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7zipUninstall.exe %OUTDIR%\Uninstall.exe
|
|
||||||
|
|
||||||
set LFLAGS=/SUBSYSTEM:CONSOLE,"5.02"
|
|
||||||
cd %ROOT%\UI\Console
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7z.exe %OUTDIR%\7z.exe
|
|
||||||
|
|
||||||
cd %ROOT%\Bundles\SFXCon
|
|
||||||
nmake %OPTS%
|
|
||||||
copy AMD64\7zCon.sfx %OUTDIR%\7zCon.sfx
|
|
||||||
|
|
||||||
:ende
|
|
||||||
cd %ROOT%\..
|
|
||||||
Reference in New Issue
Block a user