about summary refs log tree commit diff
path: root/tests/run-make/link-cfg/rmake.rs
blob: 18577fb836dd2b36af613e73068926162f74e63e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
// The `#[link(cfg(..))]` annotation means that the `#[link]`
// directive is only active in a compilation unit if that `cfg` value is satisfied.
// For example, when compiling an rlib, these directives are just encoded and
// ignored for dylibs, and all staticlibs are continued to be put into the rlib as
// usual. When placing that rlib into a staticlib, executable, or dylib, however,
// the `cfg` is evaluated *as if it were defined in the final artifact* and the
// library is decided to be linked or not.
// This test exercises this new feature by testing it with no dependencies, then
// with only dynamic libraries, then with both a staticlib and dylibs. Compilation
// and execution should be successful.
// See https://github.com/rust-lang/rust/pull/37545

//@ ignore-cross-compile
// Reason: the compiled binary is executed
//@ needs-llvm-components: x86

use run_make_support::{bare_rustc, build_native_dynamic_lib, build_native_static_lib, run, rustc};

fn main() {
    build_native_dynamic_lib("return1");
    build_native_dynamic_lib("return2");
    build_native_static_lib("return3");
    bare_rustc()
        .print("cfg")
        .target("x86_64-unknown-linux-musl")
        .run()
        .assert_stdout_contains("crt-static");
    rustc().input("no-deps.rs").cfg("foo").run();
    run("no-deps");
    rustc().input("no-deps.rs").cfg("bar").run();
    run("no-deps");

    rustc().input("dep.rs").run();
    rustc().input("with-deps.rs").cfg("foo").run();
    run("with-deps");
    rustc().input("with-deps.rs").cfg("bar").run();
    run("with-deps");

    rustc().input("dep-with-staticlib.rs").run();
    rustc().input("with-staticlib-deps.rs").cfg("foo").run();
    run("with-staticlib-deps");
    rustc().input("with-staticlib-deps.rs").cfg("bar").run();
    run("with-staticlib-deps");
}