blob: fb61435d377d7552382c08bc2d0f905639e2f901 [file] [log] [blame]
# Copyright 2024 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load(":current_py_cc_libs_tests.bzl", "current_py_cc_libs_test_suite")
current_py_cc_libs_test_suite(name = "current_py_cc_libs_tests")
# buildifier: disable=native-cc
cc_test(
name = "python_libs_linking_test",
srcs = ["python_libs_linking_test.cc"],
# Mac and Windows fail with linking errors, but its not clear why; someone
# with more C + Mac/Windows experience will have to figure it out.
# - rickeylev@
target_compatible_with = [
"@platforms//os:linux",
],
deps = [
"@rules_python//python/cc:current_py_cc_headers",
"@rules_python//python/cc:current_py_cc_libs",
],
)