| commit | 0cded485dcedb5659423f9d9fa121357eccdf192 | [log] [tgz] |
|---|---|---|
| author | Markus Hofbauer <markus.hofbauer@luminartech.com> | Tue Aug 27 18:46:27 2024 +0200 |
| committer | GitHub <noreply@github.com> | Tue Aug 27 09:46:27 2024 -0700 |
| tree | f41b1f33d6d023a6c8bc5a6c718f7fb8ba25bcc5 | |
| parent | e25b5e62561c6a5a0dd547fd099218e470f6099a [diff] |
Revert "Add -Wl,-z,undefs to Linux linkopts (#90)" (#98) This reverts commit a29d7774102c5d2e15dbedfaad35845641a1a1d8.
Provided rules:
pybind_extension: Builds a python extension, automatically adding the required build flags and pybind11 dependencies. It defines a target which can be included as a data dependency of a py_* target.pybind_library: Builds a C++ library, automatically adding the required build flags and pybind11 dependencies. This library can then be used as a dependency of a pybind_extension. The arguments match a cc_library.pybind_library_test: Builds a C++ test for a pybind_library. The arguments match a cc_test.To test a pybind_extension, the most common approach is to write the test in Python and use the standard py_test build rule.
To embed Python, add @rules_python//python/cc:current_py_cc_libs as a dependency to your cc_binary.
In your WORKSPACE file:
http_archive( name = "pybind11_bazel", strip_prefix = "pybind11_bazel-<version>", urls = ["https://github.com/pybind/pybind11_bazel/archive/v<version>.zip"], ) # We still require the pybind library. http_archive( name = "pybind11", build_file = "@pybind11_bazel//:pybind11-BUILD.bazel", strip_prefix = "pybind11-<version>", urls = ["https://github.com/pybind/pybind11/archive/v<version>.zip"], )
Then, in your BUILD file:
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
In your MODULE.bazel file:
bazel_dep(name = "pybind11_bazel", version = "<version>")
Usage in your BUILD file is as described previously.