aboutsummaryrefslogtreecommitdiff
path: root/llvm_tools/README.md
diff options
context:
space:
mode:
authorGeorge Burgess IV <gbiv@google.com>2019-09-05 20:10:06 -0700
committerGeorge Burgess <gbiv@chromium.org>2019-09-10 01:58:25 +0000
commitfc0b318753e23bc669121b3f7b7e132a96a7ac6c (patch)
tree8b1f421cd01b964a0e1a790997a4f1b13c883b03 /llvm_tools/README.md
parent478cfee03066d58ca3899753de95a58f35a96835 (diff)
downloadtoolchain-utils-fc0b318753e23bc669121b3f7b7e132a96a7ac6c.tar.gz
llvm_tools: support grabbing google3's unstable LLVM
Google3 integrates LLVM pretty often -- using that as a foundation for testing might be a good idea. This CL enables us to pull the revision of their unstable LLVM. As an added bonus, this will also have us print a message to stderr when we're syncing LLVM for the first time. Otherwise, it may seem to a user that our script got hung up on something while that first clone happens. :) BUG=chromium:914081 TEST=Unittests. Ran the new get_llvm_hash functionality. Change-Id: I3a7088c25dbd7169ca31373daf0c46fb28f46a68 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/third_party/toolchain-utils/+/1793906 Reviewed-by: Manoj Gupta <manojgupta@chromium.org> Tested-by: George Burgess <gbiv@chromium.org>
Diffstat (limited to 'llvm_tools/README.md')
-rw-r--r--llvm_tools/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm_tools/README.md b/llvm_tools/README.md
index 68106a05..f0aefce8 100644
--- a/llvm_tools/README.md
+++ b/llvm_tools/README.md
@@ -419,5 +419,5 @@ For example, to retrieve the latest google3 LLVM version:
```
from get_llvm_hash import GetGoogle3LLVMVersion
-GetGoogle3LLVMVersion()
+GetGoogle3LLVMVersion(stable=True)
```