diff options
author | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-06-21 00:00:00 +0000 |
---|---|---|
committer | Igor Pavlov <87184205+ip7z@users.noreply.github.com> | 2023-12-17 14:59:19 +0500 |
commit | 5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch) | |
tree | fe5e17420300b715021a76328444088d32047963 /DOC/readme.txt | |
parent | 93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff) | |
download | 7zip-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.txt | 49 |
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 @@ | |||
1 | 7-Zip 22.01 Sources | 1 | 7-Zip 23.01 Sources |
2 | ------------------- | 2 | ------------------- |
3 | 3 | ||
4 | 7-Zip is a file archiver for Windows. | 4 | 7-Zip is a file archiver for Windows. |
5 | 5 | ||
6 | 7-Zip Copyright (C) 1999-2022 Igor Pavlov. | 6 | 7-Zip Copyright (C) 1999-2023 Igor Pavlov. |
7 | 7 | ||
8 | 8 | ||
9 | License Info | 9 | License Info |
10 | ------------ | 10 | ------------ |
11 | 11 | ||
12 | 7-Zip is free software distributed under the GNU LGPL | 12 | 7-Zip is free software distributed under the GNU LGPL |
13 | (except for unRar code). | 13 | (except for unRar code). Also some code |
14 | read License.txt for more infomation about license. | 14 | is licensed under the "BSD 3-clause License". |
15 | Read "License.txt" for more infomation about license. | ||
15 | 16 | ||
16 | Notes about unRAR license: | 17 | Notes about unRAR license: |
17 | 18 | ||
@@ -46,13 +47,11 @@ How to compile in Windows | |||
46 | ------------------------- | 47 | ------------------------- |
47 | 48 | ||
48 | To compile the sources to Windows binaries you need Visual Studio compiler and/or Windows SDK. | 49 | To compile the sources to Windows binaries you need Visual Studio compiler and/or Windows SDK. |
49 | You can use latest Windows Studio 2017/2019 to compile binaries for x86, x64 and arm64 platforms. | 50 | You can use latest Windows Studio 2017/2019/2022 to compile binaries for x86, x64, arm64 and arm platforms. |
50 | Also you can use old compilers for some platforms: | 51 | Also 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 | ||
58 | If you use MSVC6, specify also Platform SDK directories at top of directories lists: | 57 | If 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: | |||
70 | 2) via dsp file in Visual Studio. | 69 | 2) via dsp file in Visual Studio. |
71 | 70 | ||
72 | The dsp file compiling can be used for development and debug purposes. | 71 | The dsp file compiling can be used for development and debug purposes. |
73 | The final 7-Zip binaries are compiled via makefiles, that provide best | 72 | All final 7-Zip binaries are compiled via makefiles, that provide best |
74 | optimization options. | 73 | optimization options. |
75 | 74 | ||
76 | 75 | ||
@@ -94,8 +93,8 @@ MY_DYNAMIC_LINK | |||
94 | Compiling 7-Zip for Unix/Linux | 93 | Compiling 7-Zip for Unix/Linux |
95 | ------------------------------ | 94 | ------------------------------ |
96 | 95 | ||
97 | There are several otpions to compile 7-Zip with different compilers: gcc and clang. | 96 | There are several options to compile 7-Zip with different compilers: gcc and clang. |
98 | Also 7-Zip code contains two versions for some critical parts of code: in C and in Assembeler. | 97 | Also 7-Zip code contains two versions for some parts of code: in C and in Assembeler. |
99 | So if you compile the version with Assembeler code, you will get faster 7-Zip binary. | 98 | So if you compile the version with Assembeler code, you will get faster 7-Zip binary. |
100 | 99 | ||
101 | 7-Zip's assembler code uses the following syntax for different platforms: | 100 | 7-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 | ||
111 | 2) arm64: GNU assembler for ARM64 with preprocessor. | 110 | 2) 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 | ||
114 | There are different binaries that can be compiled from 7-Zip source. | 113 | There are different binaries that can be compiled from 7-Zip source. |
115 | There are 2 main files in folder for compiling: | 114 | There 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 | |||
119 | At first you must change the current folder to folder that contains `makefile.gcc`: | 119 | At 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: | |||
143 | To compile 7-Zip for arm64 for macOS: | 143 | To 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 | ||
146 | Also you can change some compiler options in the mak files: | 146 | Also 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 | ||
208 | DOC Documentation | 208 | DOC 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 | ||
221 | Asm - Source code in Assembler : optimized code for CRC, SHA, AES, LZMA decoding. | 222 | Asm - 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 | ||