Skip to content

Commit

Permalink
Bazel: fix lipo glibc_symbols_check
Browse files Browse the repository at this point in the history
  • Loading branch information
redsun82 committed Sep 4, 2024
1 parent 2931721 commit 71731d1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions misc/bazel/glibc_symbols_check.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ def glibc_symbols_check(name, binary):

py_test(
name = name,
srcs = ["//misc/bazel/internal:check_glibc_symbols.py"],
main = "//misc/bazel/internal:check_glibc_symbols.py",
srcs = ["@codeql//misc/bazel/internal:check_glibc_symbols.py"],
main = "@codeql//misc/bazel/internal:check_glibc_symbols.py",
data = [binary],
args = ["$(location :%s)" % binary],
target_compatible_with = ["@platforms//os:linux", "//misc/bazel/platforms:bundled"],
target_compatible_with = ["@platforms//os:linux", "@codeql//misc/bazel/platforms:bundled"],
size = "medium",
tags = ["glibc-symbols-check"],
)

0 comments on commit 71731d1

Please sign in to comment.