File tree Expand file tree Collapse file tree 5 files changed +37
-0
lines changed Expand file tree Collapse file tree 5 files changed +37
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,16 @@ jobs:
183
183
rustup target add riscv64gc-unknown-linux-gnu &&
184
184
npm run build:napi -- --release --target riscv64gc-unknown-linux-gnu &&
185
185
riscv64-linux-gnu-strip *.node
186
+ - host : ubuntu-latest
187
+ target : powerpc64le-unknown-linux-gnu
188
+ setup : |
189
+ sudo apt-get update
190
+ sudo apt-get install gcc-powerpc64le-linux-gnu -y
191
+ build : >-
192
+ set -e &&
193
+ export CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_LINKER=powerpc64le-linux-gnu-gcc && rustup target add powerpc64le-unknown-linux-gnu &&
194
+ npm run build:napi -- --release --target powerpc64le-unknown-linux-gnu &&
195
+ powerpc64le-linux-gnu-strip *.node
186
196
- host : ubuntu-latest
187
197
target : s390x-unknown-linux-gnu
188
198
setup : |
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ const bindingsByPlatformAndArch = {
16
16
linux : {
17
17
arm : { base : 'linux-arm-gnueabihf' , musl : null } ,
18
18
arm64 : { base : 'linux-arm64-gnu' , musl : 'linux-arm64-musl' } ,
19
+ ppc64le : { base : 'linux-ppc64le-gnu' , musl : null } ,
19
20
riscv64 : { base : 'linux-riscv64-gnu' , musl : null } ,
20
21
s390x : { base : 'linux-s390x-gnu' , musl : null } ,
21
22
x64 : { base : 'linux-x64-gnu' , musl : 'linux-x64-musl' }
Original file line number Diff line number Diff line change
1
+ # ` @rollup/rollup-linux-ppc64le-gnu `
2
+
3
+ This is the ** ppc64le-unknown-linux-gnu** binary for ` rollup `
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " @rollup/rollup-linux-ppc64le-gnu" ,
3
+ "version" : " 0.0.0" ,
4
+ "os" : [
5
+ " linux"
6
+ ],
7
+ "cpu" : [
8
+ " ppc64le"
9
+ ],
10
+ "files" : [
11
+ " rollup.linux-ppc64le-gnu.node"
12
+ ],
13
+ "description" : " Native bindings for Rollup" ,
14
+ "author" : " Lukas Taegert-Atkinson" ,
15
+ "homepage" : " https://rollupjs.org/" ,
16
+ "license" : " MIT" ,
17
+ "repository" : " rollup/rollup" ,
18
+ "libc" : [
19
+ " glibc"
20
+ ],
21
+ "main" : " ./rollup.linux-ppc64le-gnu.node"
22
+ }
Original file line number Diff line number Diff line change 25
25
" armv7-unknown-linux-gnueabihf" ,
26
26
" i686-pc-windows-msvc" ,
27
27
" riscv64gc-unknown-linux-gnu" ,
28
+ " ppc64le-unknown-linux-gnu" ,
28
29
" s390x-unknown-linux-gnu" ,
29
30
" x86_64-apple-darwin" ,
30
31
" x86_64-pc-windows-msvc" ,
You can’t perform that action at this time.
0 commit comments