summaryrefslogtreecommitdiff
path: root/build.py
diff options
context:
space:
mode:
author Andre Braga <andrebraga@google.com> 2022-06-24 22:43:18 +0000
committer Andre Braga <andrebraga@google.com> 2022-07-06 18:40:11 +0000
commit17ff7bc8d86c85ee3147a3430d5d6452f713bed3 (patch)
tree48514576b4e16672bb67d55f6bb498b20cde69d0 /build.py
parentf4054a260b0788eed53b475358b7a85c182a06f3 (diff)
Fix help text for '--no-clang' flag.
Setting the '--no-clang' flag makes the build use gcc/g++ instead of clang, contrary to current help text. Bug: 238217027 Tag: #floss Test: Manual - Run "./build.py --no-clang" and see that gcc/g++ is being run instead of clang. Change-Id: I0f920141b7bda7ff586ba40d4a97dcefd7d2e7f8
Diffstat (limited to 'build.py')
-rwxr-xr-xbuild.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build.py b/build.py
index 46841ac166..cb9f51393d 100755
--- a/build.py
+++ b/build.py
@@ -784,7 +784,7 @@ if __name__ == '__main__':
help='Run bootstrap code to verify build env is ok to build.',
default=False,
action='store_true')
- parser.add_argument('--no-clang', help='Use clang compiler.', default=False, action='store_true')
+ parser.add_argument('--no-clang', help='Don\'t use clang compiler.', default=False, action='store_true')
parser.add_argument(
'--no-strip', help='Skip stripping binaries during install.', default=False, action='store_true')
parser.add_argument('--use', help='Set a specific use flag.')