File tree Expand file tree Collapse file tree 2 files changed +10
-4
lines changed
branches/try/src/test/run-make/reproducible-build Expand file tree Collapse file tree 2 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
---
2
2
refs/heads/master: 6dbb0e86aec11050480beb76eade6fb805010ba7
3
3
refs/heads/snap-stage3: 235d77457d80b549dad3ac36d94f235208a1eafb
4
- refs/heads/try: 7e8e6712b5ad07a47ccd8d84fd5112451a76789c
4
+ refs/heads/try: b184d2712feb3cf5d7becb1808ef969feb058836
5
5
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
6
6
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
7
7
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change 3
3
$(RUSTC ) reproducible-build-aux.rs
4
4
$(RUSTC ) reproducible-build.rs -o" $( TMPDIR) /reproducible-build1"
5
5
$(RUSTC ) reproducible-build.rs -o" $( TMPDIR) /reproducible-build2"
6
- cmp " $( TMPDIR) /reproducible-build1" " $( TMPDIR) /reproducible-build2" || exit 1
6
+ nm " $( TMPDIR) /reproducible-build1" | sort > " $( TMPDIR) /reproducible-build1.nm"
7
+ nm " $( TMPDIR) /reproducible-build2" | sort > " $( TMPDIR) /reproducible-build2.nm"
8
+ cmp " $( TMPDIR) /reproducible-build1.nm" " $( TMPDIR) /reproducible-build2.nm" || exit 1
7
9
$(RUSTC ) reproducible-build-aux.rs -g
8
10
$(RUSTC ) reproducible-build.rs -g -o" $( TMPDIR) /reproducible-build1-debug"
9
11
$(RUSTC ) reproducible-build.rs -g -o" $( TMPDIR) /reproducible-build2-debug"
10
- cmp " $( TMPDIR) /reproducible-build1-debug" " $( TMPDIR) /reproducible-build2-debug" || exit 1
12
+ nm " $( TMPDIR) /reproducible-build1-debug" | sort > " $( TMPDIR) /reproducible-build1-debug.nm"
13
+ nm " $( TMPDIR) /reproducible-build2-debug" | sort > " $( TMPDIR) /reproducible-build2-debug.nm"
14
+ cmp " $( TMPDIR) /reproducible-build1-debug.nm" " $( TMPDIR) /reproducible-build2-debug.nm" || exit 1
11
15
$(RUSTC ) reproducible-build-aux.rs -O
12
16
$(RUSTC ) reproducible-build.rs -O -o" $( TMPDIR) /reproducible-build1-opt"
13
17
$(RUSTC ) reproducible-build.rs -O -o" $( TMPDIR) /reproducible-build2-opt"
14
- cmp " $( TMPDIR) /reproducible-build1-opt" " $( TMPDIR) /reproducible-build2-opt" || exit 1
18
+ nm " $( TMPDIR) /reproducible-build1-opt" | sort > " $( TMPDIR) /reproducible-build1-opt.nm"
19
+ nm " $( TMPDIR) /reproducible-build2-opt" | sort > " $( TMPDIR) /reproducible-build2-opt.nm"
20
+ cmp " $( TMPDIR) /reproducible-build1-opt.nm" " $( TMPDIR) /reproducible-build2-opt.nm" || exit 1
You can’t perform that action at this time.
0 commit comments