Skip to content

Commit 2fc179b

Browse files
committed
Rename armv8 as arm64v8 to match Node's process.arch
1 parent 7233283 commit 2fc179b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ the same shared libraries within multiple containers.
2323
* [x64 musl](linuxmusl-x64/Dockerfile)
2424
* [ARMv6](linux-armv6/Dockerfile)
2525
* [ARMv7-A](linux-armv7/Dockerfile)
26-
* [ARMv8-A](linux-armv8/Dockerfile)
26+
* [ARM64v8-A](linux-arm64v8/Dockerfile)
2727

2828
### Windows
2929

build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if [ $# -lt 1 ]; then
1616
echo "- linuxmusl-x64"
1717
echo "- linux-armv6"
1818
echo "- linux-armv7"
19-
echo "- linux-armv8"
19+
echo "- linux-arm64v8"
2020
echo
2121
exit 1
2222
fi
@@ -41,8 +41,8 @@ if [ $PLATFORM = "all" ] || [ $PLATFORM = "win32-x64" ]; then
4141
docker run --rm -e "VERSION_VIPS=${VERSION_VIPS}" -v $PWD:/packaging vips-dev-win32-x64 sh -c "/packaging/build/win.sh"
4242
fi
4343

44-
# Linux (x64, ARMv6, ARMv7, ARMv8)
45-
for flavour in linux-x64 linuxmusl-x64 linux-armv6 linux-armv7 linux-armv8; do
44+
# Linux (x64, ARMv6, ARMv7, ARM64v8)
45+
for flavour in linux-x64 linuxmusl-x64 linux-armv6 linux-armv7 linux-arm64v8; do
4646
if [ $PLATFORM = "all" ] || [ $PLATFORM = $flavour ]; then
4747
echo "Building $flavour..."
4848
docker build -t vips-dev-$flavour $flavour

linux-armv8/Dockerfile renamed to linux-arm64v8/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM debian:stretch
22
MAINTAINER Lovell Fuller <[email protected]>
33

4-
# Create Debian-based container suitable for cross-compiling Linux ARMv8-A binaries
4+
# Create Debian-based container suitable for cross-compiling Linux ARM64v8-A binaries
55

66
# Build dependencies
77
RUN \
@@ -16,7 +16,7 @@ RUN \
1616
# Compiler settings
1717
ENV \
1818
PATH="/root/.cargo/bin:$PATH" \
19-
PLATFORM="linux-armv8" \
19+
PLATFORM="linux-arm64v8" \
2020
CHOST="aarch64-linux-gnu" \
2121
FLAGS="-march=armv8-a -Os -D_GLIBCXX_USE_CXX11_ABI=0"
2222

File renamed without changes.

0 commit comments

Comments
 (0)