Skip to content

Commit 8ec02cc

Browse files
committed
---
yaml --- r: 236474 b: refs/heads/auto c: c21fcac h: refs/heads/master v: v3
1 parent 1414de5 commit 8ec02cc

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
88
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
99
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
1010
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11-
refs/heads/auto: e82bb915e4daede832b3dcb45df6b8f4cc3569c4
11+
refs/heads/auto: c21fcac29320c065b184cc30973308982a417445
1212
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
1313
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
1414
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1

branches/auto/src/test/run-make/msvc-data-only/foo.rs renamed to branches/auto/src/test/auxiliary/msvc-data-only-lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11+
// no-prefer-dynamic
12+
1113
#![crate_type = "rlib"]
1214

1315
pub static FOO: i32 = 42;

branches/auto/src/test/run-make/msvc-data-only/Makefile

Lines changed: 0 additions & 8 deletions
This file was deleted.

branches/auto/src/test/run-make/msvc-data-only/bar.rs renamed to branches/auto/src/test/run-pass/msvc-data-only.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,10 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
extern crate foo;
11+
// aux-build:msvc-data-only-lib.rs
12+
13+
extern crate msvc_data_only_lib;
1214

1315
fn main() {
14-
println!("The answer is {} !", foo::FOO);
16+
println!("The answer is {} !", msvc_data_only_lib::FOO);
1517
}

0 commit comments

Comments
 (0)