We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If you want to create a toolchain targeting macOS, you very likely want these features:
# macOS artifact name patterns differ from the defaults only for dynamic # libraries. artifact_name_patterns = [ artifact_name_pattern( category_name = "dynamic_library", prefix = "lib", extension = ".dylib", ), ] make_variables = [ make_variable( name = "STACK_FRAME_UNLIMITED", value = "-Wframe-larger-than=100000000 -Wno-vla", ), ]
These are set on create_cc_toolchain_config_info https://github.com/bazelbuild/apple_support/blob/af8d93a33586c80bf2d245922ce31fcd109fe645/crosstool/cc_toolchain_config.bzl#L2798-L2809
And today there is no way to do this. I assume it would be preferred to create some sort of rule representing these?
The text was updated successfully, but these errors were encountered:
example hack people can patch in if they want to for now #342
Sorry, something went wrong.
here's 1 #355
artifact_name_pattern
armandomontanez
Successfully merging a pull request may close this issue.
If you want to create a toolchain targeting macOS, you very likely want these features:
These are set on create_cc_toolchain_config_info https://github.com/bazelbuild/apple_support/blob/af8d93a33586c80bf2d245922ce31fcd109fe645/crosstool/cc_toolchain_config.bzl#L2798-L2809
And today there is no way to do this. I assume it would be preferred to create some sort of rule representing these?
The text was updated successfully, but these errors were encountered: