#cpp #linkage #no-alloc

sys no-std build link-cplusplus

Link libstdc++ or libc++ automatically or manually

10 stable releases

1.0.9 Jul 3, 2023
1.0.8 Dec 17, 2022
1.0.7 Aug 22, 2022
1.0.6 Nov 13, 2021
1.0.1 Jan 25, 2020

#104 in Build Utils

Download history 212746/week @ 2024-01-03 225153/week @ 2024-01-10 248542/week @ 2024-01-17 242970/week @ 2024-01-24 252061/week @ 2024-01-31 234903/week @ 2024-02-07 255974/week @ 2024-02-14 294593/week @ 2024-02-21 271555/week @ 2024-02-28 241359/week @ 2024-03-06 221225/week @ 2024-03-13 228912/week @ 2024-03-20 226477/week @ 2024-03-27 238836/week @ 2024-04-03 258583/week @ 2024-04-10 213082/week @ 2024-04-17

981,477 downloads per month
Used in 350 crates (18 directly)

MIT/Apache

9KB

-lstdc++ or -lc++

github crates.io docs.rs build status

This crate exists for the purpose of passing -lstdc++ or -lc++ to the linker, while making it possible for an application to make that choice on behalf of its library dependencies.

Without this crate, a library would need to:

  • pick one or the other to link, with no way for downstream applications to override the choice;
  • or link neither and require an explicit link flag provided by downstream applications even if they would be fine with a default choice;

neither of which are good experiences.


Options

An application or library that is fine with either of libstdc++ or libc++ being linked, whichever is the platform's default, should use the following in Cargo.toml:

[dependencies]
link-cplusplus = "1.0"

An application that wants a particular one or the other linked should use:

[dependencies]
link-cplusplus = { version = "1.0", features = ["libstdc++"] }

# or

link-cplusplus = { version = "1.0", features = ["libc++"] }

An application that wants to handle its own more complicated logic for link flags from its build script can make this crate do nothing by using:

[dependencies]
link-cplusplus = { version = "1.0", features = ["nothing"] }

Lastly, make sure to add an explicit extern crate dependency to your crate root, since the link-cplusplus crate will be otherwise unused and its link flags dropped.

// src/lib.rs

extern crate link_cplusplus;

License

Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~175KB