blob: 32cd53c0afc1d45af0568c1ec3f38b22057f54fa [file] [log] [blame]
Kevin Lubicke1b36fe2018-08-02 11:30:33 -04001#!/bin/bash
2# Copyright 2018 Google LLC
3#
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
Kevin Lubick8e9750d2018-10-09 09:36:35 -04007set -ex
Kevin Lubicke1b36fe2018-08-02 11:30:33 -04008
9BASE_DIR=`cd $(dirname ${BASH_SOURCE[0]}) && pwd`
10HTML_SHELL=$BASE_DIR/shell.html
Kevin Lubick30cc00c2018-08-03 10:26:00 -040011BUILD_DIR=${BUILD_DIR:="out/pathkit"}
Kevin Lubick8e9750d2018-10-09 09:36:35 -040012mkdir -p $BUILD_DIR
Kevin Lubickf76da632020-01-28 10:39:56 -050013# sometimes the .a files keep old symbols around - cleaning them out makes sure
14# we get a fresh build.
15rm -f $BUILD_DIR/*.a
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040016
17# This expects the environment variable EMSDK to be set
18if [[ ! -d $EMSDK ]]; then
19 echo "Be sure to set the EMSDK environment variable."
20 exit 1
21fi
22
23# Navigate to SKIA_HOME from where this file is located.
24pushd $BASE_DIR/../..
25
Kevin Lubick30cc00c2018-08-03 10:26:00 -040026echo "Putting output in $BUILD_DIR (pwd = `pwd`)"
27
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040028# Run this from $SKIA_HOME, not from the directory this file is in.
29if [[ ! -d ./src ]]; then
30 echo "Cannot locate Skia source. Is the source checkout okay? Exiting."
31 exit 1
32fi
33
34if [[ $@ == *help* ]]; then
35 echo "By default, this script builds a production WASM build of PathKit."
36 echo ""
Kevin Lubick30cc00c2018-08-03 10:26:00 -040037 echo "It is put in ${BUILD_DIR}, configured by the BUILD_DIR environment"
38 echo "variable. Additionally, the EMSDK environment variable must be set."
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040039 echo "This script takes several optional parameters:"
Kevin Lubick641bf872018-08-06 14:49:39 -040040 echo " test = Make a build suitable for running tests or profiling"
41 echo " debug = Make a build suitable for debugging (defines SK_DEBUG)"
Kevin Lubick30cc00c2018-08-03 10:26:00 -040042 echo " asm.js = Build for asm.js instead of WASM (very experimental)"
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040043 echo " serve = starts a webserver allowing a user to navigate to"
44 echo " localhost:8000/pathkit.html to view the demo page."
45 exit 0
46fi
47
48
49# Use -O0 for larger builds (but generally quicker)
50# Use -Oz for (much slower, but smaller/faster) production builds
Kevin Lubick11194ab2018-08-17 13:52:56 -040051export EMCC_CLOSURE_ARGS="--externs $BASE_DIR/externs.js "
Kevin Lubickcbcff382018-10-02 09:02:18 -040052RELEASE_CONF="-Oz --closure 1 -s EVAL_CTORS=1 --llvm-lto 3 -s ELIMINATE_DUPLICATE_FUNCTIONS=1 -DSK_RELEASE"
53# It is very important for the -DSK_RELEASE/-DSK_DEBUG to match on the libskia.a, otherwise
54# things like SKDEBUGCODE are sometimes compiled in and sometimes not, which can cause headaches
55# like sizeof() mismatching between .cpp files and .h files.
56EXTRA_CFLAGS="\"-DSK_RELEASE\""
Kevin Lubick641bf872018-08-06 14:49:39 -040057if [[ $@ == *test* ]]; then
58 echo "Building a Testing/Profiling build"
59 RELEASE_CONF="-O2 --profiling -DPATHKIT_TESTING -DSK_RELEASE"
60elif [[ $@ == *debug* ]]; then
61 echo "Building a Debug build"
Kevin Lubickcbcff382018-10-02 09:02:18 -040062 EXTRA_CFLAGS="\"-DSK_DEBUG\""
Kevin Lubicke17862a2020-01-28 13:42:30 -050063 RELEASE_CONF="-O0 --js-opts 0 -s SAFE_HEAP=1 -s ASSERTIONS=1 -g3 -DPATHKIT_TESTING -DSK_DEBUG"
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040064fi
65
66WASM_CONF="-s WASM=1"
67if [[ $@ == *asm.js* ]]; then
68 echo "Building with asm.js instead of WASM"
Kevin Lubickf14a3c02018-08-22 09:35:32 -040069 WASM_CONF="-s WASM=0 -s ALLOW_MEMORY_GROWTH=1"
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040070fi
71
72OUTPUT="-o $BUILD_DIR/pathkit.js"
Kevin Lubick8e9750d2018-10-09 09:36:35 -040073
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040074source $EMSDK/emsdk_env.sh
Kevin Lubickcbcff382018-10-02 09:02:18 -040075EMCC=`which emcc`
76EMCXX=`which em++`
Kevin Lubickf76da632020-01-28 10:39:56 -050077EMAR=`which emar`
Kevin Lubicke1b36fe2018-08-02 11:30:33 -040078
Kevin Lubick8e9750d2018-10-09 09:36:35 -040079# Turn off exiting while we check for ninja (which may not be on PATH)
80set +e
81NINJA=`which ninja`
Kevin Lubickcbcff382018-10-02 09:02:18 -040082if [[ -z $NINJA ]]; then
83 git clone "https://chromium.googlesource.com/chromium/tools/depot_tools.git" --depth 1 $BUILD_DIR/depot_tools
84 NINJA=$BUILD_DIR/depot_tools/ninja
85fi
Kevin Lubick8e9750d2018-10-09 09:36:35 -040086# Re-enable error checking
87set -e
Kevin Lubickcbcff382018-10-02 09:02:18 -040088
89echo "Compiling bitcode"
90
91./bin/fetch-gn
92./bin/gn gen ${BUILD_DIR} \
93 --args="cc=\"${EMCC}\" \
94 cxx=\"${EMCXX}\" \
Kevin Lubickf76da632020-01-28 10:39:56 -050095 ar=\"${EMAR}\" \
Mike Klein45f36b52020-06-08 14:10:29 -050096 extra_cflags=[\"-s\", \"WARN_UNALIGNED=1\",
Kevin Lubickf76da632020-01-28 10:39:56 -050097 \"-s\", \"MAIN_MODULE=1\",
Kevin Lubicke805b242018-10-10 14:55:01 -040098 ${EXTRA_CFLAGS}
99 ] \
Kevin Lubickcbcff382018-10-02 09:02:18 -0400100 is_debug=false \
101 is_official_build=true \
102 is_component_build=false \
Mike Kleinba201ae2019-04-23 07:38:07 -0500103 werror=true \
Kevin Lubicke805b242018-10-10 14:55:01 -0400104 target_cpu=\"wasm\" "
Kevin Lubickcbcff382018-10-02 09:02:18 -0400105
106${NINJA} -C ${BUILD_DIR} libpathkit.a
107
108echo "Generating WASM"
109
Kevin Lubickf76da632020-01-28 10:39:56 -0500110${EMCXX} $RELEASE_CONF -std=c++17 \
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500111-I. \
Kevin Lubicke1b36fe2018-08-02 11:30:33 -0400112--bind \
Kevin Lubickd1285b12020-05-21 09:59:44 -0400113--no-entry \
Kevin Lubick644d8e72018-08-09 13:58:04 -0400114--pre-js $BASE_DIR/helper.js \
Kevin Lubick11194ab2018-08-17 13:52:56 -0400115--pre-js $BASE_DIR/chaining.js \
Kevin Lubick641bf872018-08-06 14:49:39 -0400116-fno-rtti -fno-exceptions -DEMSCRIPTEN_HAS_UNBOUND_TYPE_NAMES=0 \
Kevin Lubicke1b36fe2018-08-02 11:30:33 -0400117$WASM_CONF \
Kevin Lubick217056c2018-09-20 17:39:31 -0400118-s ERROR_ON_UNDEFINED_SYMBOLS=1 \
119-s EXPORT_NAME="PathKitInit" \
120-s MODULARIZE=1 \
121-s NO_EXIT_RUNTIME=1 \
122-s NO_FILESYSTEM=1 \
Kevin Lubick641bf872018-08-06 14:49:39 -0400123-s STRICT=1 \
Kevin Lubicke805b242018-10-10 14:55:01 -0400124-s WARN_UNALIGNED=1 \
Kevin Lubicke1b36fe2018-08-02 11:30:33 -0400125$OUTPUT \
126$BASE_DIR/pathkit_wasm_bindings.cpp \
Kevin Lubickcbcff382018-10-02 09:02:18 -0400127${BUILD_DIR}/libpathkit.a
Kevin Lubicke1b36fe2018-08-02 11:30:33 -0400128
129if [[ $@ == *serve* ]]; then
130 pushd $BUILD_DIR
131 python serve.py
132fi
133