File tree 3 files changed +12
-9
lines changed
doc/contributing/maintaining
3 files changed +12
-9
lines changed Original file line number Diff line number Diff line change 1
- /* auto-generated on 2023-08-11 13:30:54 -0400. Do not edit! */
1
+ /* auto-generated on 2023-10-08 13:48:09 -0400. Do not edit! */
2
2
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/src, filename=simdutf.cpp
3
3
/* begin file src/simdutf.cpp */
4
4
#include "simdutf.h"
@@ -1119,9 +1119,12 @@ simdutf_really_inline simd16<int16_t>::operator simd16<uint16_t>() const { retur
1119
1119
#endif
1120
1120
1121
1121
#ifdef _MSC_VER
1122
- #if _MSC_VER >= 1920
1123
- // Visual Studio 2019 and up support VBMI2 under x64 even if the header
1122
+ #if _MSC_VER >= 1930
1123
+ // Visual Studio 2022 and up support VBMI2 under x64 even if the header
1124
1124
// avx512vbmi2intrin.h is not found.
1125
+ // Visual Studio 2019 technically supports VBMI2, but the implementation
1126
+ // might be unreliable. Search for visualstudio2019icelakeissue in our
1127
+ // tests.
1125
1128
#define SIMDUTF_COMPILER_SUPPORTS_VBMI2 1
1126
1129
#endif
1127
1130
#endif
Original file line number Diff line number Diff line change 1
- /* auto-generated on 2023-08-11 13:30:54 -0400. Do not edit! */
1
+ /* auto-generated on 2023-10-08 13:48:09 -0400. Do not edit! */
2
2
// dofile: invoked with prepath=/Users/dlemire/CVS/github/simdutf/include, filename=simdutf.h
3
3
/* begin file include/simdutf.h */
4
4
#ifndef SIMDUTF_H
@@ -576,7 +576,7 @@ SIMDUTF_DISABLE_UNDESIRED_WARNINGS
576
576
#define SIMDUTF_SIMDUTF_VERSION_H
577
577
578
578
/** The version of simdutf being used (major.minor.revision) */
579
- #define SIMDUTF_VERSION " 3.2.17 "
579
+ #define SIMDUTF_VERSION " 3.2.18 "
580
580
581
581
namespace simdutf {
582
582
enum {
@@ -591,7 +591,7 @@ enum {
591
591
/**
592
592
* The revision (major.minor.REVISION) of simdutf being used.
593
593
*/
594
- SIMDUTF_VERSION_REVISION = 17
594
+ SIMDUTF_VERSION_REVISION = 18
595
595
};
596
596
} // namespace simdutf
597
597
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ This a list of all the dependencies:
25
25
* [ npm] [ ]
26
26
* [ openssl] [ ]
27
27
* [ postject] [ ]
28
- * [ simdutf 3.2.17 ] [ ]
28
+ * [ simdutf 3.2.18 ] [ ]
29
29
* [ undici 5.26.4] [ ]
30
30
* [ uv] [ ]
31
31
* [ uvwasi] [ ]
@@ -273,7 +273,7 @@ See [maintaining-openssl][] for more informations.
273
273
The [ postject] ( https://github.com/nodejs/postject ) dependency is used for the
274
274
[ Single Executable strategic initiative] ( https://github.com/nodejs/single-executable ) .
275
275
276
- ### simdutf 3.2.17
276
+ ### simdutf 3.2.18
277
277
278
278
The [ simdutf] ( https://github.com/simdutf/simdutf ) dependency is
279
279
a C++ library for fast UTF-8 decoding and encoding.
@@ -335,7 +335,7 @@ performance improvements not currently available in standard zlib.
335
335
[ npm ] : #npm
336
336
[ openssl ] : #openssl
337
337
[ postject ] : #postject
338
- [ simdutf 3.2.17 ] : #simdutf-3217
338
+ [ simdutf 3.2.18 ] : #simdutf-3218
339
339
[ undici 5.26.4 ] : #undici-5264
340
340
[ update-openssl-action ] : ../../../.github/workflows/update-openssl.yml
341
341
[ uv ] : #uv
You can’t perform that action at this time.
0 commit comments