| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 9f2b7d4 commit 3cbd340
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.5', | ||
| 41 | + 'v8_embedder_string': '-node.6', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -187,12 +187,13 @@ | |||
| 187 | 187 | #define HWY_TARGET_STR_AVX3_SPR HWY_TARGET_STR_AVX3_ZEN4 | |
| 188 | 188 | #endif | |
| 189 | 189 | ||
| 190 | - #if HWY_COMPILER_GCC_ACTUAL >= 1500 || HWY_COMPILER_CLANG >= 2200 | ||
| 191 | - #if HWY_HAVE_EVEX512 | ||
| 190 | + // Support for avx10.2-512 was removed between clang 22 and 23 without a | ||
| 191 | + // feature test macro. | ||
| 192 | + #if HWY_COMPILER_CLANG >= 2200 && HWY_HAVE_EVEX512 | ||
| 192 | 193 | #define HWY_TARGET_STR_AVX10_2 HWY_TARGET_STR_AVX3_SPR ",avx10.2-512" | |
| 193 | - #else | ||
| 194 | + // Recent compilers drop the -512 suffix because 512 bits are always available. | ||
| 195 | + #elif HWY_COMPILER_GCC_ACTUAL >= 1500 || HWY_COMPILER_CLANG >= 2200 | ||
| 194 | 196 | #define HWY_TARGET_STR_AVX10_2 HWY_TARGET_STR_AVX3_SPR ",avx10.2" | |
| 195 | - #endif // HWY_HAVE_EVEX512 | ||
| 196 | 197 | #else | |
| 197 | 198 | #define HWY_TARGET_STR_AVX10_2 HWY_TARGET_STR_AVX3_SPR | |
| 198 | 199 | #endif | |
| Back | FazBrowse Home | New Git URL |
0 commit comments