Skip to content

Commit c1a7a88

Browse files
committed
try fix
1 parent 94d1cea commit c1a7a88

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

cc/defs.bzl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -633,9 +633,7 @@ def swift_cc_test(name, type, **kwargs):
633633
kwargs["copts"] = local_includes + kwargs.get("copts", [])
634634
kwargs["data"] = kwargs.get("data", []) + _symbolizer_data()
635635
kwargs["env"] = _symbolizer_env(kwargs.get("env", {}))
636-
637-
# should we just always build test binaries statically?
638-
kwargs["linkstatic"] = _link_static(kwargs.get("linkstatic", True))
636+
kwargs["linkstatic"] = kwargs.get("linkstatic", True)
639637
kwargs["name"] = name
640638
kwargs["tags"] = [TEST, type] + kwargs.get("tags", [])
641639
kwargs["target_compatible_with"] = kwargs.get("target_compatible_with", []) + _test_compatible_with()

0 commit comments

Comments
 (0)