summaryrefslogtreecommitdiffstats
path: root/tools/clang
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-06 02:38:04 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-10-06 02:38:04 +0000
commitd60566ad6aff5f064909f099447964ea7e3b2ffb (patch)
tree5bef3d24b7e36dbaf2f2a18efb69706019b2bb9e /tools/clang
parent60e96b39d7e1f00a0db8dcbc21647df8000e852e (diff)
downloadchromium_src-d60566ad6aff5f064909f099447964ea7e3b2ffb.zip
chromium_src-d60566ad6aff5f064909f099447964ea7e3b2ffb.tar.gz
chromium_src-d60566ad6aff5f064909f099447964ea7e3b2ffb.tar.bz2
Revert 226920 "Roll Clang 188423:191856."
Possibly broke crash symbolication on mac. > Roll Clang 188423:191856. > > Remove libprofile_rt from package.sh, it doesn't exist after LLVM r191835 > > BUG=290204,303886 > R=thakis@chromium.org > TBR=net owner > NOTRY=true > > Review URL: https://codereview.chromium.org/25875004 TBR=thakis@chromium.org Review URL: https://codereview.chromium.org/26145004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@227219 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/clang')
-rwxr-xr-xtools/clang/scripts/package.sh1
-rwxr-xr-xtools/clang/scripts/update.sh2
2 files changed, 2 insertions, 1 deletions
diff --git a/tools/clang/scripts/package.sh b/tools/clang/scripts/package.sh
index cd3b2b3..f57a28b 100755
--- a/tools/clang/scripts/package.sh
+++ b/tools/clang/scripts/package.sh
@@ -59,6 +59,7 @@ cp "${LLVM_BIN_DIR}/llvm-symbolizer" $PDIR/bin/
# Copy plugins. Some of the dylibs are pretty big, so copy only the ones we
# care about.
cp "${LLVM_LIB_DIR}/libFindBadConstructs.${SO_EXT}" $PDIR/lib
+cp "${LLVM_LIB_DIR}/libprofile_rt.${SO_EXT}" $PDIR/lib
# Copy built-in headers (lib/clang/3.2/include).
# libcompiler-rt puts all kinds of libraries there too, but we want only some.
diff --git a/tools/clang/scripts/update.sh b/tools/clang/scripts/update.sh
index 76545a6..1c49d74 100755
--- a/tools/clang/scripts/update.sh
+++ b/tools/clang/scripts/update.sh
@@ -8,7 +8,7 @@
# Do NOT CHANGE this if you don't know what you're doing -- see
# https://code.google.com/p/chromium/wiki/UpdatingClang
# Reverting problematic clang rolls is safe, though.
-CLANG_REVISION=191856
+CLANG_REVISION=188423
THIS_DIR="$(dirname "${0}")"
LLVM_DIR="${THIS_DIR}/../../../third_party/llvm"