Merge pull request #260 from hauserx:main

PiperOrigin-RevId: 691373476
Change-Id: I7a09129bdc7ac32bbbdb5f06a586bc0ceee2a8b7
This commit is contained in:
Copybara-Service 2024-10-30 04:54:20 -07:00
commit 0d44d3ee76
1 changed files with 0 additions and 6 deletions

View File

@ -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]),
],
), ),
], ],
) )