aboutsummaryrefslogtreecommitdiff
path: root/helpers/llvm-sync
diff options
context:
space:
mode:
authorDiana Picus <diana.picus@linaro.org>2017-10-31 15:35:24 +0100
committerDiana Picus <diana.picus@linaro.org>2017-11-03 14:38:57 +0100
commit36317e8a70960c6a2467eb4c01aa8ee74caa285c (patch)
tree069fbb2e1edbe904fe60a637cfa18838cd35de3f /helpers/llvm-sync
parent95226d4cd09790c3628ab8474cfdb21bf3fe99ad (diff)
Minor fixes to scripts interfaces
* Remove all references to clang-tools-extra in helpers We do not support clang tools extra in the python scripts, since it's too complicated and nobody is working on it yet. Therefore, clean up all references to it in the helpers as well, to avoid any confusion. * Add a bit more info to llvm.py --help Change-Id: I5990925cebafce182b081227a4d33aecead7b4ac
Diffstat (limited to 'helpers/llvm-sync')
-rwxr-xr-xhelpers/llvm-sync8
1 files changed, 0 insertions, 8 deletions
diff --git a/helpers/llvm-sync b/helpers/llvm-sync
index 9784006..ee3c16d 100755
--- a/helpers/llvm-sync
+++ b/helpers/llvm-sync
@@ -38,7 +38,6 @@ function repo_sync () {
prog=`basename $0`
clang=false
-cextra=false
rt=false
libcxx=false
libcxxabi=false
@@ -49,7 +48,6 @@ tests=false
web=false
clang_workdir=$LLVM_SRC/tools/clang
-extra_workdir=$LLVM_SRC/tools/clang/tools/extra
rt_workdir=$LLVM_SRC/projects/compiler-rt
libcxx_workdir=$LLVM_SRC/projects/libcxx
libcxxabi_workdir=$LLVM_SRC/projects/libcxxabi
@@ -59,7 +57,6 @@ lldb_workdir=$LLVM_SRC/tools/lldb
test_workdir=$LLVM_SRC/projects/test-suite
if [ -d $clang_workdir ]; then clang=true; fi
-if [ -d $extra_workdir ]; then cextra=true; fi
if [ -d $rt_workdir ]; then rt=true; fi
if [ -d $libcxx_workdir ]; then libcxx=true; fi
if [ -d $libcxxabi_workdir ]; then libcxxabi=true; fi
@@ -75,7 +72,6 @@ while getopts "wa" opt; do
;;
a)
clang=true
- cextra=true
rt=true
libcxx=true
libcxxabi=true
@@ -104,10 +100,6 @@ if $clang; then
fi
# Optional updates
-if $cextra; then
- repo_sync ClangToolsExtra $llvm_repos/clang-tools-extra $extra_workdir
-fi
-
if $rt; then
repo_sync RT $llvm_repos/compiler-rt $rt_workdir
fi