35c6e22fab
The new methodology can be found in the re-worded comment, but the gist of it is that -C prefer-dynamic doesn't turn off static linkage. The error messages should also be a little more sane now. Closes #12133
21 lines
727 B
Rust
21 lines
727 B
Rust
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
// file at the top-level directory of this distribution and at
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
// option. This file may not be copied, modified, or distributed
|
|
// except according to those terms.
|
|
|
|
// aux-build:issue-12133-rlib.rs
|
|
// aux-build:issue-12133-dylib.rs
|
|
// no-prefer-dynamic
|
|
|
|
// error-pattern: dependencies were not all found in either dylib or rlib format
|
|
|
|
extern crate a = "issue-12133-rlib";
|
|
extern crate b = "issue-12133-dylib";
|
|
|
|
fn main() {}
|