aboutsummaryrefslogtreecommitdiff
path: root/DOC/readme.txt
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /DOC/readme.txt
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'DOC/readme.txt')
-rw-r--r--DOC/readme.txt49
1 files changed, 25 insertions, 24 deletions
diff --git a/DOC/readme.txt b/DOC/readme.txt
index faec8dc..5cd90c5 100644
--- a/DOC/readme.txt
+++ b/DOC/readme.txt
@@ -1,17 +1,18 @@
17-Zip 22.01 Sources 17-Zip 23.01 Sources
2------------------- 2-------------------
3 3
47-Zip is a file archiver for Windows. 47-Zip is a file archiver for Windows.
5 5
67-Zip Copyright (C) 1999-2022 Igor Pavlov. 67-Zip Copyright (C) 1999-2023 Igor Pavlov.
7 7
8 8
9License Info 9License Info
10------------ 10------------
11 11
127-Zip is free software distributed under the GNU LGPL 127-Zip is free software distributed under the GNU LGPL
13(except for unRar code). 13(except for unRar code). Also some code
14read License.txt for more infomation about license. 14is licensed under the "BSD 3-clause License".
15Read "License.txt" for more infomation about license.
15 16
16Notes about unRAR license: 17Notes about unRAR license:
17 18
@@ -46,13 +47,11 @@ How to compile in Windows
46------------------------- 47-------------------------
47 48
48To compile the sources to Windows binaries you need Visual Studio compiler and/or Windows SDK. 49To compile the sources to Windows binaries you need Visual Studio compiler and/or Windows SDK.
49You can use latest Windows Studio 2017/2019 to compile binaries for x86, x64 and arm64 platforms. 50You can use latest Windows Studio 2017/2019/2022 to compile binaries for x86, x64, arm64 and arm platforms.
50Also you can use old compilers for some platforms: 51Also you can use old compilers for some platforms:
51 x86 : Visual C++ 6.0 with Platform SDK 52 x86 : Visual C++ 6.0 with Platform SDK
52 x64 : Windows Server 2003 R2 Platform SDK 53 x64 : Windows Server 2003 R2 Platform SDK
53 arm64 : Windows Studio 2017 54 ia64 (itanium) : Windows Server 2003 R2 Platform SDK
54 arm : Windows Studio 2017
55 ia64 (itanium) : Windows Server 2003 R2 Platform SDK
56 arm for Windows CE : Standard SDK for Windows CE 5.0 55 arm for Windows CE : Standard SDK for Windows CE 5.0
57 56
58If you use MSVC6, specify also Platform SDK directories at top of directories lists: 57If you use MSVC6, specify also Platform SDK directories at top of directories lists:
@@ -70,7 +69,7 @@ There are two ways to compile 7-Zip binaries:
702) via dsp file in Visual Studio. 692) via dsp file in Visual Studio.
71 70
72The dsp file compiling can be used for development and debug purposes. 71The dsp file compiling can be used for development and debug purposes.
73The final 7-Zip binaries are compiled via makefiles, that provide best 72All final 7-Zip binaries are compiled via makefiles, that provide best
74optimization options. 73optimization options.
75 74
76 75
@@ -94,8 +93,8 @@ MY_DYNAMIC_LINK
94Compiling 7-Zip for Unix/Linux 93Compiling 7-Zip for Unix/Linux
95------------------------------ 94------------------------------
96 95
97There are several otpions to compile 7-Zip with different compilers: gcc and clang. 96There are several options to compile 7-Zip with different compilers: gcc and clang.
98Also 7-Zip code contains two versions for some critical parts of code: in C and in Assembeler. 97Also 7-Zip code contains two versions for some parts of code: in C and in Assembeler.
99So if you compile the version with Assembeler code, you will get faster 7-Zip binary. 98So if you compile the version with Assembeler code, you will get faster 7-Zip binary.
100 99
1017-Zip's assembler code uses the following syntax for different platforms: 1007-Zip's assembler code uses the following syntax for different platforms:
@@ -109,13 +108,14 @@ So if you compile the version with Assembeler code, you will get faster 7-Zip bi
109 https://github.com/nidud/asmc 108 https://github.com/nidud/asmc
110 109
1112) arm64: GNU assembler for ARM64 with preprocessor. 1102) arm64: GNU assembler for ARM64 with preprocessor.
112 That systax of that arm64 assembler code in 7-Zip is supported by GCC and CLANG for ARM64. 111 That systax is supported by GCC and CLANG for ARM64.
113 112
114There are different binaries that can be compiled from 7-Zip source. 113There are different binaries that can be compiled from 7-Zip source.
115There are 2 main files in folder for compiling: 114There are 2 main files in folder for compiling:
116 makefile - that can be used for compiling Windows version of 7-Zip with nmake command 115 makefile - that can be used for compiling Windows version of 7-Zip with nmake command
117 makefile.gcc - that can be used for compiling Linux/macOS versions of 7-Zip with make command 116 makefile.gcc - that can be used for compiling Linux/macOS versions of 7-Zip or Windows version
118 117 with MINGW (GCC) with make command.
118
119At first you must change the current folder to folder that contains `makefile.gcc`: 119At first you must change the current folder to folder that contains `makefile.gcc`:
120 120
121 cd CPP/7zip/Bundles/Alone2 121 cd CPP/7zip/Bundles/Alone2
@@ -143,7 +143,7 @@ To compile 7-Zip for arm64 with assembler:
143To compile 7-Zip for arm64 for macOS: 143To compile 7-Zip for arm64 for macOS:
144 make -j -f ../../cmpl_mac_arm64.mak 144 make -j -f ../../cmpl_mac_arm64.mak
145 145
146Also you can change some compiler options in the mak files: 146Also you can change some compiler options in the "mak" files:
147 cmpl_gcc.mak 147 cmpl_gcc.mak
148 var_gcc.mak 148 var_gcc.mak
149 warn_gcc.mak 149 warn_gcc.mak
@@ -207,16 +207,17 @@ Description of 7-Zip sources package
207 207
208DOC Documentation 208DOC Documentation
209--- 209---
210 7zFormat.txt - 7z format description 210 readme.txt - Readme file
211 copying.txt - GNU LGPL license
212 unRarLicense.txt - License for unRAR part of source code
213 src-history.txt - Sources history 211 src-history.txt - Sources history
212 7zC.txt - 7z ANSI-C Decoder description
213 7zFormat.txt - 7z format description
214 Methods.txt - Compression method IDs 214 Methods.txt - Compression method IDs
215 readme.txt - Readme file
216 lzma.txt - LZMA compression description 215 lzma.txt - LZMA compression description
217 7zip.nsi - installer script for NSIS 216 License.txt - license information
218 7zip.wix - installer script for WIX 217 copying.txt - GNU LGPL license
219 218 unRarLicense.txt - License for unRAR part of source code
219 7zip.wxs - installer script for WIX
220 7zip.hhp - html help project file
220 221
221Asm - Source code in Assembler : optimized code for CRC, SHA, AES, LZMA decoding. 222Asm - Source code in Assembler : optimized code for CRC, SHA, AES, LZMA decoding.
222 223
@@ -250,9 +251,9 @@ Windows common files for Windows related code
250 SFXWin 7z.sfx: Windows 7z SFX module 251 SFXWin 7z.sfx: Windows 7z SFX module
251 SFXSetup 7zS.sfx: Windows 7z SFX module for Installers 252 SFXSetup 7zS.sfx: Windows 7z SFX module for Installers
252 253
253 Compress files for compression/decompression 254 Compress files for compression / decompression
254 255
255 Crypto files for encryption / decompression 256 Crypto files for encryption / decryption
256 257
257 UI 258 UI
258 259