aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Dole <adriandole@google.com>2022-08-17 21:35:02 +0000
committerChromeos LUCI <chromeos-scoped@luci-project-accounts.iam.gserviceaccount.com>2022-08-18 21:37:34 +0000
commitc06ff64d26f90e7bb8047358d2d4c6c25619c6d3 (patch)
tree328edd583648e9105d85208fa4234edf14eff800
parent6bf6e8bb14f3943f1d050c3651ac037e699cee40 (diff)
downloadtoolchain-utils-c06ff64d26f90e7bb8047358d2d4c6c25619c6d3.tar.gz
toolchain_utils: remove libcxxabi
BUG=b:235023022 TEST=./update_chromeos_llvm_hash_unittest.py Change-Id: I4d015daeefff57087852c5aae0faad7d439d9267 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/3834534 Tested-by: Adrian Dole <adriandole@google.com> Commit-Queue: Adrian Dole <adriandole@google.com> Reviewed-by: Adrian Dole <adriandole@google.com> Auto-Submit: Adrian Dole <adriandole@google.com> Reviewed-by: Manoj Gupta <manojgupta@chromium.org>
-rw-r--r--llvm_tools/README.md9
-rwxr-xr-xllvm_tools/update_chromeos_llvm_hash.py1
2 files changed, 4 insertions, 6 deletions
diff --git a/llvm_tools/README.md b/llvm_tools/README.md
index 86a4b778..e2ef34f1 100644
--- a/llvm_tools/README.md
+++ b/llvm_tools/README.md
@@ -19,10 +19,9 @@ password)**
### Usage
This script is used for updating a package's LLVM hash (sys-devel/llvm,
-sys-libs/compiler-rt, sys-libs/libcxx, sys-libs/libcxxabi, and
-sys-libs/llvm-libunwind) and then run tests after updating the git hash.
-There are three ways to test the change, including starting tryjobs,
-recipe builders or using cq+1.
+sys-libs/compiler-rt, sys-libs/libcxx, and sys-libs/llvm-libunwind)
+and then run tests after updating the git hash. There are three ways to test
+the change, including starting tryjobs, recipe builders or using cq+1.
An example when this script should be run is when certain boards would like
to be tested with the updated `LLVM_NEXT_HASH`.
@@ -118,7 +117,7 @@ For example, to create a roll CL to the git hash of revision 367622:
```
$ ./update_chromeos_llvm_hash.py \
--update_packages sys-devel/llvm sys-libs/compiler-rt \
- sys-libs/libcxx sys-libs/libcxxabi sys-libs/llvm-libunwind \
+ sys-libs/libcxx sys-libs/llvm-libunwind \
'dev-util/lldb-server' \
--llvm_version 367622 \
--failure_mode disable_patches
diff --git a/llvm_tools/update_chromeos_llvm_hash.py b/llvm_tools/update_chromeos_llvm_hash.py
index 88257740..5d5a888f 100755
--- a/llvm_tools/update_chromeos_llvm_hash.py
+++ b/llvm_tools/update_chromeos_llvm_hash.py
@@ -34,7 +34,6 @@ DEFAULT_PACKAGES = [
'sys-devel/llvm',
'sys-libs/compiler-rt',
'sys-libs/libcxx',
- 'sys-libs/libcxxabi',
'sys-libs/llvm-libunwind',
]