1# Tutorial 2 3The following tutorial is adapted from [this blog post][tutorial]. 4 5What follows is a whirlwind introductory tutorial to using `bindgen` from inside 6`build.rs`. We'll generate bindings to `bzip2` (which is available on most 7systems) on-the-fly. 8 9[**TL;DR?** The full tutorial code is available here.][example] 10 11[tutorial]: http://fitzgeraldnick.com/2016/12/14/using-libbindgen-in-build-rs.html 12[example]: https://github.com/fitzgen/bindgen-tutorial-bzip2-sys 13