blob: db255fb20a79941c9c0b156251572aa0be781520 [file] [log] [blame]
mtklein@google.com9f3b0e42013-10-08 15:16:36 +00001#!/bin/bash
2
3# Build Skia with one of Clang's many sanitizers.
4#
commit-bot@chromium.org7eb529f2014-04-24 18:16:13 +00005# $ tools/xsan_build {address,thread,undefined,etc.} [any other flags to pass to make...]
mtklein@google.com9f3b0e42013-10-08 15:16:36 +00006#
7# This script assumes the use of Clang >=3.2.
8#
9# For more information, see:
10# http://clang.llvm.org/docs/UsersManual.html#controlling-code-generation
11
12set -e
mtklein8ca88e42016-02-03 09:21:44 -080013set -x
mtklein@google.com9f3b0e42013-10-08 15:16:36 +000014
mtklein013475a2016-02-12 12:15:23 -080015here=$(cd `dirname $0`; echo `pwd`)
16cores=48
17
18echo "Bootstrapping CMake"
19pushd $here/../third_party/externals/cmake
20./bootstrap --parallel=$cores
21make -j $cores cmake
22popd
23
24echo "Building Clang"
25pushd $here/../third_party/externals/llvm
26mkdir -p out/
27cd out/
28$here/../third_party/externals/cmake/bin/cmake -DCMAKE_BUILD_TYPE=Release -G Ninja ..
29ninja
30popd
31
32export CC=$here/../third_party/externals/llvm/out/bin/clang
33export CXX=$here/../third_party/externals/llvm/out/bin/clang++
commit-bot@chromium.org7eb529f2014-04-24 18:16:13 +000034$CC --version
mtklein@google.com9f3b0e42013-10-08 15:16:36 +000035
mtklein8ca88e42016-02-03 09:21:44 -080036if [[ "$1" == "memory" ]]; then
37 export GYP_DEFINES="skia_gpu=0 skia_no_fontconfig=1 skia_freetype_static=1 ${GYP_DEFINES}"
38fi
39export GYP_DEFINES="skia_sanitizer=$1 ${GYP_DEFINES}"
40
41shift
42make $@