-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Open
Labels
A-linkageArea: linking into static, shared libraries and binariesArea: linking into static, shared libraries and binariesC-bugCategory: This is a bug.Category: This is a bug.O-windows-gnuToolchain: GNU, Operating system: WindowsToolchain: GNU, Operating system: WindowsT-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.
Description
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
.
Metadata
Metadata
Assignees
Labels
A-linkageArea: linking into static, shared libraries and binariesArea: linking into static, shared libraries and binariesC-bugCategory: This is a bug.Category: This is a bug.O-windows-gnuToolchain: GNU, Operating system: WindowsToolchain: GNU, Operating system: WindowsT-compilerRelevant to the compiler team, which will review and decide on the PR/issue.Relevant to the compiler team, which will review and decide on the PR/issue.