-
Notifications
You must be signed in to change notification settings - Fork 4.1k
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
Declare support for gcc_quoting_for_param_files
feature in Unix cc_toolchain
#21699
Declare support for gcc_quoting_for_param_files
feature in Unix cc_toolchain
#21699
Conversation
…toolchain This was missed with a9e5a32. Without this change, `gcc_quoting_for_param_files` does nothing. Without `gcc_quoting_for_param_files`, linking can fail for files with spaces in them. Signed-off-by: Brentley Jones <github@brentleyjones.com>
@bazelbuild/triage in case @googlewalt isn't the right person to review this (it was his original change though), can you assign another reviewer? |
@bazel-io flag |
This is for 7.2.0, correct? |
Yes, it's not urgent, but ideally can go into 7.x. |
@bazel-io fork 7.2.0 |
…toolchain This was missed with a9e5a32. Without this change, `gcc_quoting_for_param_files` does nothing, because `FeatureConfiguration.isEnabled()` will always return false. Without `gcc_quoting_for_param_files`, linking can fail for files with spaces in them. Closes bazelbuild#21699. PiperOrigin-RevId: 617092387 Change-Id: Ifcd4378d2120e2e75e2e72a4b0059b41ba5ce833
…Unix cc_toolchain (#21798) This was missed with a9e5a32. Without this change, `gcc_quoting_for_param_files` does nothing, because `FeatureConfiguration.isEnabled()` will always return false. Without `gcc_quoting_for_param_files`, linking can fail for files with spaces in them. Closes #21699. PiperOrigin-RevId: 617092387 Change-Id: Ifcd4378d2120e2e75e2e72a4b0059b41ba5ce833 Commit bd2da6e Co-authored-by: Brentley Jones <github@brentleyjones.com> Co-authored-by: Ian (Hee) Cha <heec@google.com>
The changes in this PR have been included in Bazel 7.2.0 RC1. Please test out the release candidate and report any issues as soon as possible. |
This was missed with a9e5a32. Without this change,
gcc_quoting_for_param_files
does nothing, becauseFeatureConfiguration.isEnabled()
will always return false. Withoutgcc_quoting_for_param_files
, linking can fail for files with spaces in them.