blob: b8508caf44e14ecbe22d0f275a9c3a8ff92fc49a (
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
|
#!/bin/bash
# Copyright (c) 2011 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This script will check out llvm and clang into third_party/llvm and build it.
CLANG_REVISION=125186
THIS_DIR=$(dirname $0)
LLVM_DIR=$THIS_DIR/../../../third_party/llvm
CLANG_DIR=$LLVM_DIR/tools/clang
# Die if any command dies.
set -e
# Echo all commands.
set -x
# Build clang.
# Check out.
svn co --force http://llvm.org/svn/llvm-project/llvm/trunk@$CLANG_REVISION $LLVM_DIR
svn co --force http://llvm.org/svn/llvm-project/cfe/trunk@$CLANG_REVISION $CLANG_DIR
# Build (in a separate directory).
# The clang bots have /usr/local/clang be a symbolic link into this hardcoded
# directory, so if you change it you also need to change these links.
mkdir -p $LLVM_DIR/../llvm-build
cd $LLVM_DIR/../llvm-build
../llvm/configure --enable-optimized
# TODO(thakis): Make this the number of cores (use |sysctl hw.ncpu| on OS X and
# some grepping of /proc/cpuinfo on linux).
make -j3
cd -
# Build plugin.
# Copy it into the clang tree and use clang's build system to compile the
# plugin.
PLUGIN_SRC_DIR=$THIS_DIR/../plugins
PLUGIN_DST_DIR=$LLVM_DIR/../llvm-build/tools/clang/tools/chrome-plugin
rm -rf $PLUGIN_DST_DIR
cp -R $PLUGIN_SRC_DIR $PLUGIN_DST_DIR
cd $PLUGIN_DST_DIR
make -j3
cd -
|