Open
Description
opened on Mar 4, 2018
The following code fails to link on both stable-gnu
and nightly-gnu
toolchains:
extern crate hound;
fn main() {
let mut input = hound::WavReader::open("clarinet-d4.wav").unwrap();
println!("Hello, world!");
}
The build fails with the following output: https://gist.github.com/suhr/2962444f16cfce13bdc7118fe658a33c. Note that hound
is a pure Rust crate.
Strangely enough, a hello world without hound
compiles just fine.
OS: Windows 7, toolchain: stable-gnu
and nightly-gnu
.
Activity