aboutsummaryrefslogtreecommitdiffhomepage
path: root/platform_tools/barelinux/bin/arm64_make
blob: 96f16557e6c401c1cdc2162ac7c8cce7c2dd1a00 (plain)
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
#!/bin/sh

# Copyright 2014 Google Inc.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

usage() {
    cat >&2 <<EOF
arm64_make - this script builds a AArch64 version of skia that
does not depend on external libraries, perfect for putting in an
embedded system running Linux.

Assumes that you have already run the download_deps script.

Usage:
  $0 \\
    [-o SKIA_OUT_DIR] [-c CC_EXE] [-x CXX_EXE] \\
    [-t Debug | Release | Coverage | Release_Developer] \\

Example use:
  $0 \\
    -o ~/build/skia/arg64gcc \\
    -c ~/local/arm64/bin/aarch64-linux-gnu-gcc \\
    -x ~/local/arm64/bin/aarch64-linux-gnu-g++ \\
EOF
    return 1
}

# BUILD_TYPE should be one of:
#  Coverage, Debug, Release, or Release_Developer
BUILD_TYPE='Debug'

while getopts ":c:x:o:t:h" opt ; do
    case $opt in
        c)  export CC="$OPTARG" ;;
        x)  export CXX="$OPTARG" ;;
        o)  export SKIA_OUT="$OPTARG";;
        t)  BUILD_TYPE="$OPTARG";;
        h)  usage || exit;;
        ?)  echo "unknown option '$OPTARG'" >&2;
            usage || exit;;
    esac
done

export GYP_DEFINES="${GYP_DEFINES} \
    skia_gpu=0 \
    skia_arch_type=arm64 \
    "

"$(dirname "$0")/barelinux_make" -t "$BUILD_TYPE"