diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-12-27 04:31:42 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2022-12-27 04:31:42 +0000 |
commit | 6b00fc2090169e9ac6ceb73c83405a3cfccdac0e (patch) | |
tree | 047e33a93f195fa58bbee6203b7ba35967465986 /user | |
parent | 52b8db5d4e6a20d84ac8b91aa819ff89b4dd62c6 (diff) | |
download | packages-6b00fc2090169e9ac6ceb73c83405a3cfccdac0e.tar.gz packages-6b00fc2090169e9ac6ceb73c83405a3cfccdac0e.tar.bz2 packages-6b00fc2090169e9ac6ceb73c83405a3cfccdac0e.tar.xz packages-6b00fc2090169e9ac6ceb73c83405a3cfccdac0e.zip |
user/node: Disable on 32-bit PowerPC
Unfortunately V8 does not support ppc and seemingly has no interest in
adopting a port. In the future we will look for alternative JS runtimes
for running workloads on ppc.
We may also be able to package Node 12 since it has ppc support, with
the caveat that it is not well-supported upstream and will stop
receiving security updates. This is still useful for some workloads
(Firefox builds, internal Homebridge, and such), perhaps.
Closes: #837
Diffstat (limited to 'user')
-rw-r--r-- | user/node/APKBUILD | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/user/node/APKBUILD b/user/node/APKBUILD index c95f67c53..993637c66 100644 --- a/user/node/APKBUILD +++ b/user/node/APKBUILD @@ -5,7 +5,7 @@ pkgver=18.12.1 pkgrel=0 pkgdesc="JavaScript runtime" url="https://nodejs.org/" -arch="all" +arch="all !ppc" # #837 options="net" # Required in check() license="MIT AND ICU AND BSD-3-Clause AND BSD-2-Clause AND ISC AND Public-Domain AND Zlib AND Artistic-2.0 AND Apache-2.0 AND CC0-1.0" depends="" |