154 releases (stable)

new 1.0.122 May 7, 2024
1.0.120 Mar 23, 2024
1.0.111 Dec 17, 2023
1.0.110 Oct 28, 2023
0.3.4 May 22, 2020

#41 in Build Utils

Download history 208599/week @ 2024-01-22 210878/week @ 2024-01-29 204424/week @ 2024-02-05 203890/week @ 2024-02-12 250151/week @ 2024-02-19 248959/week @ 2024-02-26 217560/week @ 2024-03-04 221006/week @ 2024-03-11 223657/week @ 2024-03-18 221850/week @ 2024-03-25 225330/week @ 2024-04-01 243163/week @ 2024-04-08 252785/week @ 2024-04-15 259323/week @ 2024-04-22 212599/week @ 2024-04-29 245653/week @ 2024-05-06

980,387 downloads per month
Used in 276 crates (118 directly)

MIT/Apache

375KB
10K SLoC

The CXX code generator for constructing and compiling C++ code.

This is intended to be used from Cargo build scripts to execute CXX's C++ code generator, set up any additional compiler flags depending on the use case, and make the C++ compiler invocation.


Example

Example of a canonical Cargo build script that builds a CXX bridge:

// build.rs

fn main() {
    cxx_build::bridge("src/main.rs")
        .file("src/demo.cc")
        .std("c++11")
        .compile("cxxbridge-demo");

    println!("cargo:rerun-if-changed=src/main.rs");
    println!("cargo:rerun-if-changed=src/demo.cc");
    println!("cargo:rerun-if-changed=include/demo.h");
}

A runnable working setup with this build script is shown in the demo directory of https://github.com/dtolnay/cxx.


Alternatives

For use in non-Cargo builds like Bazel or Buck, CXX provides an alternate way of invoking the C++ code generator as a standalone command line tool. The tool is packaged as the cxxbridge-cmd crate.

$ cargo install cxxbridge-cmd  # or build it from the repo

$ cxxbridge src/main.rs --header > path/to/mybridge.h
$ cxxbridge src/main.rs > path/to/mybridge.cc

Dependencies

~0.7–8.5MB
~67K SLoC