2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 # This script will check out llvm and clang, build a full package
7 # with the latest plugin revisions and then repackage an existing
8 # clang-package with the new plugin revisions.
10 # The new package can be uploaded to replace the existing clang
11 # package at the same clang revision.
13 THIS_DIR
="$(dirname "${0}")"
14 LLVM_BUILD_DIR
="${THIS_DIR}/../../../third_party/llvm-build"
15 LLVM_TAR_DIR
="${LLVM_BUILD_DIR}/Release+Asserts"
16 LLVM_BIN_DIR
="${LLVM_TAR_DIR}/bin"
17 LLVM_LIB_DIR
="${LLVM_TAR_DIR}/lib"
21 if [ "$(uname -s)" = "Darwin" ]; then
29 # Build clang with the new plugin revisions.
30 "$THIS_DIR"/package.sh $@
32 R
=$
("${LLVM_BIN_DIR}/clang" --version | \
33 sed -ne 's/clang version .*(\([0-9]*\))/\1/p')
36 if [ ! -f "$PDIR.tgz" ]; then
37 echo "Could not find package archive $PDIR.tgz generated by package.sh"
41 # We don't want to change the clang binary, so fetch the current clang
42 # package and add the plugin shared-libraries to the existing package.
43 rm -rf $LLVM_BUILD_DIR
47 $
(grep 'set(LIBRARYNAME' "$THIS_DIR"/..
/blink_gc_plugin
/CMakeLists.txt \
48 | cut
-d ' ' -f 2 |
tr -d ')')
49 LIBFILE
=lib
$LIBNAME.
$SO_EXT
51 # Check that we are actually creating the plugin at a new revision.
52 if [ -f "$LLVM_LIB_DIR/$LIBFILE" ]; then
53 echo "The plugin revision $LIBNAME is already in the existing package."
57 cp $PDIR/lib
/$LIBFILE "$LLVM_LIB_DIR/"
58 if [ "$(uname -s)" = "Darwin" ]; then
59 tar zcf
${PDIR}_repack.tgz
-C "$LLVM_TAR_DIR" bin include lib buildlog.txt
61 tar zcf
${PDIR}_repack.tgz
-C "$LLVM_TAR_DIR" bin lib buildlog.txt
64 echo The clang package has been repackaged with
$LIBNAME
66 echo gsutil
cp -a public-read
${PDIR}_repack.tgz \
67 gs
://chromium-browser-clang
/$PLATFORM/$PDIR.tgz