File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 75
75
# Do a few more specialized configurations.
76
76
- platform : ubuntu-22.04
77
77
mode :
78
- - name : minimal
79
- args : -Dminimal=enabled -Ddecoder=enabled -Davx512=enabled -Dknc=enabled -Dsegment=enabled -Dtests=enabled
78
+ name : minimal
79
+ args : -Dminimal=enabled -Ddecoder=enabled -Davx512=enabled -Dknc=enabled -Dsegment=enabled -Dtests=enabled
80
80
extra_envs : {}
81
81
flavor : minsize
82
82
exclude :
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ if (CMAKE_VERSION VERSION_GREATER_EQUAL "3.15")
5
5
cmake_policy (SET CMP0091 NEW)
6
6
endif ()
7
7
8
- project (Zydis VERSION 4 .0.0.0 LANGUAGES C)
8
+ project (Zydis VERSION 5 .0.0.0 LANGUAGES C)
9
9
10
10
include (GNUInstallDirs)
11
11
include (CMakePackageConfigHelpers)
Original file line number Diff line number Diff line change 2
2
# per line (i.e. do not split long lines with '\'), and only use '=' to set values
3
3
4
4
PROJECT_NAME = Zydis
5
- PROJECT_NUMBER = v4 .0.0
5
+ PROJECT_NUMBER = v5 .0.0
6
6
OUTPUT_DIRECTORY = ./doc
7
7
INPUT = ./include ./README.md ./files.dox
8
8
JAVADOC_AUTOBRIEF = YES
Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ extern "C" {
86
86
/**
87
87
* A macro that defines the zydis version.
88
88
*/
89
- #define ZYDIS_VERSION (ZyanU64)0x0004000000000000
89
+ #define ZYDIS_VERSION 0x0005000000000000ULL
90
90
91
91
/* ---------------------------------------------------------------------------------------------- */
92
92
/* Helper macros */
@@ -97,28 +97,28 @@ extern "C" {
97
97
*
98
98
* @param version The zydis version value
99
99
*/
100
- #define ZYDIS_VERSION_MAJOR (version ) (ZyanU16)( ((version) & 0xFFFF000000000000) >> 48)
100
+ #define ZYDIS_VERSION_MAJOR (version ) (((version) & 0xFFFF000000000000) >> 48)
101
101
102
102
/**
103
103
* Extracts the minor-part of the zydis version.
104
104
*
105
105
* @param version The zydis version value
106
106
*/
107
- #define ZYDIS_VERSION_MINOR (version ) (ZyanU16)( ((version) & 0x0000FFFF00000000) >> 32)
107
+ #define ZYDIS_VERSION_MINOR (version ) (((version) & 0x0000FFFF00000000) >> 32)
108
108
109
109
/**
110
110
* Extracts the patch-part of the zydis version.
111
111
*
112
112
* @param version The zydis version value
113
113
*/
114
- #define ZYDIS_VERSION_PATCH (version ) (ZyanU16)( ((version) & 0x00000000FFFF0000) >> 16)
114
+ #define ZYDIS_VERSION_PATCH (version ) (((version) & 0x00000000FFFF0000) >> 16)
115
115
116
116
/**
117
117
* Extracts the build-part of the zydis version.
118
118
*
119
119
* @param version The zydis version value
120
120
*/
121
- #define ZYDIS_VERSION_BUILD (version ) (ZyanU16)( (version) & 0x000000000000FFFF)
121
+ #define ZYDIS_VERSION_BUILD (version ) ((version) & 0x000000000000FFFF)
122
122
123
123
/* ---------------------------------------------------------------------------------------------- */
124
124
Original file line number Diff line number Diff line change 1
1
project (
2
2
' Zydis' ,
3
3
' c' ,
4
- version : ' 4 .0.0' ,
4
+ version : ' 5 .0.0' ,
5
5
license : ' MIT' ,
6
6
license_files : ' LICENSE' ,
7
7
meson_version : ' >=1.3' ,
Original file line number Diff line number Diff line change 27
27
#include "winres.h"
28
28
29
29
VS_VERSION_INFO VERSIONINFO
30
- FILEVERSION 4 ,0,0,0
31
- PRODUCTVERSION 4 ,0,0,0
30
+ FILEVERSION 5 ,0,0,0
31
+ PRODUCTVERSION 5 ,0,0,0
32
32
FILEFLAGSMASK 0x3fL
33
33
#ifdef _DEBUG
34
34
FILEFLAGS 0x1L
@@ -45,12 +45,12 @@ BEGIN
45
45
BEGIN
46
46
VALUE "CompanyName", "zyantific"
47
47
VALUE "FileDescription", "Zyan Disassembler Library"
48
- VALUE "FileVersion", "4 .0.0.0"
48
+ VALUE "FileVersion", "5 .0.0.0"
49
49
VALUE "InternalName", "Zydis"
50
50
VALUE "LegalCopyright", "Copyright \xA9 2014-2024 by zyantific.com"
51
51
VALUE "OriginalFilename", "Zydis.dll"
52
52
VALUE "ProductName", "Zyan Disassembler Library"
53
- VALUE "ProductVersion", "4 .0.0.0"
53
+ VALUE "ProductVersion", "5 .0.0.0"
54
54
END
55
55
END
56
56
BLOCK "VarFileInfo"
You can’t perform that action at this time.
0 commit comments