From e8f0206665d4c71dcf06ad7d0fbe05fbaa4af4f3 Mon Sep 17 00:00:00 2001 From: Tino Reichardt Date: Mon, 6 Feb 2017 21:21:36 +0100 Subject: [PATCH] LZ4 has only 12 levels now --- C/zstdmt/lz4mt.h | 4 +-- CPP/build-x64x.cmd | 65 ---------------------------------------------- 2 files changed, 2 insertions(+), 67 deletions(-) delete mode 100644 CPP/build-x64x.cmd diff --git a/C/zstdmt/lz4mt.h b/C/zstdmt/lz4mt.h index 46f3ba6d..eedafbe0 100644 --- a/C/zstdmt/lz4mt.h +++ b/C/zstdmt/lz4mt.h @@ -1,6 +1,6 @@ /** - * Copyright (c) 2016 Tino Reichardt + * Copyright (c) 2016 - 2017 Tino Reichardt * All rights reserved. * * 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 */ #define LZ4MT_THREAD_MAX 128 -#define LZ4MT_LEVEL_MAX 16 +#define LZ4MT_LEVEL_MAX 12 #define LZ4FMT_MAGICNUMBER 0x184D2204U #define LZ4FMT_MAGIC_SKIPPABLE 0x184D2A50U diff --git a/CPP/build-x64x.cmd b/CPP/build-x64x.cmd deleted file mode 100644 index 360d22fd..00000000 --- a/CPP/build-x64x.cmd +++ /dev/null @@ -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%\..