8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e2b13d commit 4d4e506Copy full SHA for 4d4e506
doc/api/single-executable-applications.md
@@ -233,7 +233,7 @@ platforms:
233
* Windows
234
* macOS
235
* Linux (all distributions [supported by Node.js][] except Alpine and all
236
- architectures [supported by Node.js][] except s390x and ppc64)
+ architectures [supported by Node.js][] except s390x)
237
238
This is due to a lack of better tools to generate single-executables that can be
239
used to test this feature on other platforms.
test/common/sea.js
@@ -40,10 +40,6 @@ function skipIfSingleExecutableIsNotSupported() {
40
if (process.arch === 's390x') {
41
common.skip('On s390x, postject fails with `memory access out of bounds`.');
42
}
43
-
44
- if (process.arch === 'ppc64') {
45
- common.skip('On ppc64, this test times out.');
46
- }
47
48
49