forked from lovell/sharp-libvips
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·94 lines (80 loc) · 2.55 KB
/
build.sh
File metadata and controls
executable file
·94 lines (80 loc) · 2.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#!/usr/bin/env bash
set -e
# Dependency version numbers
source ./versions.properties
if [ $# -lt 1 ]; then
echo
echo "Usage: $0 PLATFORM"
echo "Build shared libraries for libvips and its dependencies"
echo
echo "Possible values for PLATFORM are:"
echo "- win32-ia32"
echo "- win32-x64"
echo "- win32-arm64v8"
echo "- linux-x64"
echo "- linuxmusl-x64"
echo "- linux-armv6"
echo "- linux-arm64v8"
echo "- linuxmusl-arm64v8"
echo "- linux-ppc64le"
echo "- linux-riscv64"
echo "- linux-s390x"
echo "- darwin-x64"
echo "- darwin-arm64v8"
echo "- dev-wasm32"
echo
exit 1
fi
PLATFORM="$1"
# macOS
# Note: we intentionally don't build these binaries inside a Docker container
for flavour in darwin-x64 darwin-arm64v8; do
if [ $PLATFORM = $flavour ] && [ "$(uname)" == "Darwin" ]; then
echo "Building $flavour..."
# Use Clang provided by XCode
export CC="clang"
export CXX="clang++"
export PLATFORM
# Use pkg-config provided by Homebrew
export PKG_CONFIG="$(brew --prefix)/bin/pkg-config --static"
# Earliest supported version of macOS
export MACOSX_DEPLOYMENT_TARGET="12.0"
# Added -fno-stack-check to workaround a stack misalignment bug on macOS 10.15
# See:
# https://forums.developer.apple.com/thread/121887
# https://trac.ffmpeg.org/ticket/8073#comment:12
export FLAGS="-fno-stack-check"
# Prevent use of API newer than the deployment target
export FLAGS+=" -Werror=unguarded-availability-new"
export MESON="--cross-file=$PWD/platforms/$PLATFORM/meson.ini"
source $PWD/versions.properties
source $PWD/build/posix.sh
exit 0
fi
done
# Is docker available?
if ! [ -x "$(command -v docker)" ]; then
echo "Please install docker"
exit 1
fi
# WebAssembly
if [ "$PLATFORM" == "dev-wasm32" ]; then
./build/wasm.sh
exit 0
fi
# Windows
for flavour in win32-ia32 win32-x64 win32-arm64v8; do
if [ $PLATFORM = "all" ] || [ $PLATFORM = $flavour ]; then
echo "Building $flavour..."
docker build --pull -t vips-dev-win32 platforms/win32
docker run --rm -e "PLATFORM=${flavour}" -v $PWD:/packaging vips-dev-win32 sh -c "/packaging/build/win.sh"
fi
done
# Linux (x64, ARMv6, ARM64v8)
for flavour in linux-x64 linuxmusl-x64 linux-armv6 linux-arm64v8 linuxmusl-arm64v8 linux-ppc64le linux-riscv64 linux-s390x; do
if [ $PLATFORM = "all" ] || [ $PLATFORM = $flavour ]; then
echo "Building $flavour..."
docker build --pull -t vips-dev-$flavour platforms/$flavour
docker run --rm -v $PWD:/packaging vips-dev-$flavour sh -c "/packaging/build/posix.sh"
fi
done