Currently if you have a crate with the following contents: ``` rust [crate_type="lib"]; ``` and you compile it like this `rustc --rlib test.rs` you'll get both an `.rlib` and a `.so` file. I expect that command to emit only the `.rlib` file.