| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 1a7c8a1 commit eac377b
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -36,7 +36,7 @@ | |||
| 36 | 36 | ||
| 37 | 37 | # Reset this number to 0 on major V8 upgrades. | |
| 38 | 38 | # Increment by one for each non-official patch applied to deps/v8. | |
| 39 | - 'v8_embedder_string': '-node.5', | ||
| 39 | + 'v8_embedder_string': '-node.6', | ||
| 40 | 40 | ||
| 41 | 41 | ##### V8 defaults for Node.js ##### | |
| 42 | 42 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -70,6 +70,11 @@ | |||
| 70 | 70 | }], | |
| 71 | 71 | ||
| 72 | 72 | ################################################################################ | |
| 73 | + ['arch == ppc64', { | ||
| 74 | + # Tests that require Simd enabled. | ||
| 75 | + 'wasm-trace-memory': [SKIP], | ||
| 76 | + }], | ||
| 77 | + | ||
| 73 | 78 | ['arch == mips64el or arch == mipsel', { | |
| 74 | 79 | # Tests that require Simd enabled. | |
| 75 | 80 | 'wasm-trace-memory': [SKIP], | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -654,6 +654,10 @@ def _get_statusfile_variables(self, options): | |||
| 654 | 654 | self.build_config.arch == 'mipsel': | |
| 655 | 655 | no_simd_sse = not simd_mips | |
| 656 | 656 | ||
| 657 | + # Set no_simd_sse on architectures without Simd enabled. | ||
| 658 | + if self.build_config.arch == 'ppc64': | ||
| 659 | + no_simd_sse = True | ||
| 660 | + | ||
| 657 | 661 | return { | |
| 658 | 662 | "arch": self.build_config.arch, | |
| 659 | 663 | "asan": self.build_config.asan, | |
| Back | FazBrowse Home | New Git URL |
0 commit comments