-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[build-script] Fix --enable-tsan-runtime option #13088
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@swift-ci please smoke test |
@@ -972,10 +972,6 @@ def create_argument_parser(): | |||
help="the absolute path to libtool. Default is auto detected.", | |||
type=arguments.type.executable, | |||
metavar="PATH") | |||
parser.add_argument( | |||
"--distcc", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this change?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I was testing something out locally and mistakenly removed this option. I've added it back.
…e the surrounding tsan options.
96c368d
to
660bc30
Compare
@swift-ci please smoke test |
@@ -990,7 +989,8 @@ def create_argument_parser(): | |||
action=arguments.action.enable) | |||
parser.add_argument( | |||
"--enable-tsan-runtime", | |||
help="enable Thread Sanitizer on the swift runtime") | |||
help="enable Thread Sanitizer on the swift runtime", | |||
action=arguments.action.enable) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please put help at the last argument here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not going to do this at the moment. I have that change in a follow-up PR to #12873
Changed the --enable-tsan-runtime option to use the enable action like the surrounding tsan options.