Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-10-04 | split the repo into a workspace | Christian Poveda | |
remove `clap` dependency :tada: update the book installation instructions | |||
2017-01-23 | Unify under the `bindgen` name. | Emilio Cobos Álvarez | |
2016-11-16 | Transition to libbindgen sub-crate | Jeff Waugh | |
- The root crate is the `bindgen` binary - Rust-ify the test suite, no more subprocesses! - Update Travis config to test both crates | |||
2016-11-11 | Add rudimentary support for `__float128` | Nick Fitzgerald | |
This adds `__float128` as a builtin type, and generates an opaque array of 16 `u8`s to represent it in the generated bindings since Rust doesn't have an `f128` type. Context and motivation: Somehow `__float128` is getting pulled into SpiderMonkey headers from somewhere, and the lack of `__float128` support was causing bindgen to hard fail in bindings generation. |