Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 12-May-2024 | - | 42 | 38 | ||
src/ | 12-May-2024 | - | 973 | 706 | ||
tests/ | 12-May-2024 | - | 372 | 332 | ||
.gitignore | D | 12-May-2024 | 32 | 5 | 4 | |
BUILD.gn | D | 12-May-2024 | 939 | 27 | 23 | |
CHANGELOG.md | D | 12-May-2024 | 3.9 KiB | 164 | 100 | |
Cargo.toml | D | 12-May-2024 | 452 | 18 | 15 | |
LICENSE-APACHE | D | 12-May-2024 | 10.6 KiB | 202 | 169 | |
LICENSE-MIT | D | 12-May-2024 | 1 KiB | 26 | 22 | |
README.OpenSource | D | 12-May-2024 | 381 | 12 | 11 | |
README.md | D | 12-May-2024 | 2.8 KiB | 80 | 54 |
README.OpenSource
1[ 2 { 3 "Name": "pkg-config", 4 "License": "Apache License V2.0", 5 "License File": "LICENSE-APACHE", 6 "Version Number": "0.3.26", 7 "Owner": "xuelei3@huawei.com", 8 "Upstream URL": "https://github.com/rust-lang/pkg-config-rs", 9 "Description": "A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts." 10 } 11] 12
README.md
1# pkg-config-rs 2 3[](https://github.com/rust-lang/pkg-config-rs/actions) 4[](https://github.com/rust-lang/pkg-config-rs/) 5 6[Documentation](https://docs.rs/pkg-config) 7 8A simple library meant to be used as a build dependency with Cargo packages in 9order to use the system `pkg-config` tool (if available) to determine where a 10library is located. 11 12You can use this crate directly to probe for specific libraries, or use 13[system-deps](https://github.com/gdesmott/system-deps) to declare all your 14`pkg-config` dependencies in `Cargo.toml`. 15 16This library requires Rust 1.30+. 17 18# Example 19 20Find the system library named `foo`, with minimum version 1.2.3: 21 22```rust 23extern crate pkg_config; 24 25fn main() { 26 pkg_config::Config::new().atleast_version("1.2.3").probe("foo").unwrap(); 27} 28``` 29 30Find the system library named `foo`, with no version requirement (not 31recommended): 32 33```rust 34extern crate pkg_config; 35 36fn main() { 37 pkg_config::probe_library("foo").unwrap(); 38} 39``` 40 41# External configuration via target-scoped environment variables 42 43In cross-compilation context, it is useful to manage separately `PKG_CONFIG_PATH` 44and a few other variables for the `host` and the `target` platform. 45 46The supported variables are: `PKG_CONFIG_PATH`, `PKG_CONFIG_LIBDIR`, and 47`PKG_CONFIG_SYSROOT_DIR`. 48 49Each of these variables can also be supplied with certain prefixes and suffixes, in the following prioritized order: 50 511. `<var>_<target>` - for example, `PKG_CONFIG_PATH_x86_64-unknown-linux-gnu` 522. `<var>_<target_with_underscores>` - for example, `PKG_CONFIG_PATH_x86_64_unknown_linux_gnu` 533. `<build-kind>_<var>` - for example, `HOST_PKG_CONFIG_PATH` or `TARGET_PKG_CONFIG_PATH` 544. `<var>` - a plain `PKG_CONFIG_PATH` 55 56This crate will allow `pkg-config` to be used in cross-compilation 57if `PKG_CONFIG_SYSROOT_DIR` or `PKG_CONFIG` is set. You can set `PKG_CONFIG_ALLOW_CROSS=1` 58to bypass the compatibility check, but please note that enabling use of `pkg-config` in 59cross-compilation without appropriate sysroot and search paths set is likely to break builds. 60 61Some Rust sys crates support building vendored libraries from source, which may be a work 62around for lack of cross-compilation support in `pkg-config`. 63 64# License 65 66This project is licensed under either of 67 68 * Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or 69 https://www.apache.org/licenses/LICENSE-2.0) 70 * MIT license ([LICENSE-MIT](LICENSE-MIT) or 71 https://opensource.org/licenses/MIT) 72 73at your option. 74 75### Contribution 76 77Unless you explicitly state otherwise, any contribution intentionally submitted 78for inclusion in pkg-config-rs by you, as defined in the Apache-2.0 license, shall be 79dual licensed as above, without any additional terms or conditions. 80