mirror of https://github.com/bazelbuild/rules_cc
Merge pull request #260 from hauserx:main
PiperOrigin-RevId: 691373476 Change-Id: I7a09129bdc7ac32bbbdb5f06a586bc0ceee2a8b7
This commit is contained in:
commit
0d44d3ee76
|
@ -223,18 +223,12 @@ def _sanitizer_feature(name = "", specific_compile_flags = [], specific_link_fla
|
||||||
"-fno-sanitize-recover=all",
|
"-fno-sanitize-recover=all",
|
||||||
] + specific_compile_flags),
|
] + specific_compile_flags),
|
||||||
],
|
],
|
||||||
with_features = [
|
|
||||||
with_feature_set(features = [name]),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
flag_set(
|
flag_set(
|
||||||
actions = all_link_actions,
|
actions = all_link_actions,
|
||||||
flag_groups = [
|
flag_groups = [
|
||||||
flag_group(flags = specific_link_flags),
|
flag_group(flags = specific_link_flags),
|
||||||
],
|
],
|
||||||
with_features = [
|
|
||||||
with_feature_set(features = [name]),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue