summaryrefslogtreecommitdiffstats
path: root/src/test/run-make-fulldeps/reproducible-build/Makefile
blob: 642a480815b7be64889d8f4c11c71abbb9af93be (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
include ../tools.mk

# ignore-musl
# Objects are reproducible but their path is not.

all:  \
	smoke \
	debug \
	opt \
	link_paths \
	remap_paths \
	different_source_dirs_rlib \
	remap_cwd_rlib \
	remap_cwd_to_empty \
	extern_flags

# TODO: Builds of `bin` crate types are not deterministic with debuginfo=2 on
# Windows.
# See: https://github.com/rust-lang/rust/pull/87320#issuecomment-920105533
# Issue: https://github.com/rust-lang/rust/issues/88982
#
#	different_source_dirs_bin \
#	remap_cwd_bin \

smoke:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) linker.rs -O
	$(RUSTC) reproducible-build-aux.rs
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker)
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker)
	diff -u "$(TMPDIR)/linker-arguments1" "$(TMPDIR)/linker-arguments2"

debug:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) linker.rs -O
	$(RUSTC) reproducible-build-aux.rs -g
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker) -g
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker) -g
	diff -u "$(TMPDIR)/linker-arguments1" "$(TMPDIR)/linker-arguments2"

opt:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) linker.rs -O
	$(RUSTC) reproducible-build-aux.rs -O
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker) -O
	$(RUSTC) reproducible-build.rs -C linker=$(call RUN_BINFILE,linker) -O
	diff -u "$(TMPDIR)/linker-arguments1" "$(TMPDIR)/linker-arguments2"

link_paths:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	$(RUSTC) reproducible-build.rs --crate-type rlib -L /b
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfoo.rlib
	$(RUSTC) reproducible-build.rs --crate-type rlib -L /a
	cmp "$(TMPDIR)/libreproducible_build.rlib" "$(TMPDIR)/libfoo.rlib" || exit 1

remap_paths:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	$(RUSTC) reproducible-build.rs --crate-type rlib --remap-path-prefix=/a=/c
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfoo.rlib
	$(RUSTC) reproducible-build.rs --crate-type rlib --remap-path-prefix=/b=/c
	cmp "$(TMPDIR)/libreproducible_build.rlib" "$(TMPDIR)/libfoo.rlib" || exit 1

different_source_dirs_bin:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	mkdir $(TMPDIR)/test
	cp reproducible-build.rs $(TMPDIR)/test
	$(RUSTC) reproducible-build.rs --crate-type bin --remap-path-prefix=$$PWD=/b
	cp $(TMPDIR)/reproducible-build $(TMPDIR)/foo
	(cd $(TMPDIR)/test && $(RUSTC) reproducible-build.rs \
		--remap-path-prefix=$(TMPDIR)/test=/b \
		--crate-type bin)
	cmp "$(TMPDIR)/reproducible-build" "$(TMPDIR)/foo" || exit 1

different_source_dirs_rlib:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	mkdir $(TMPDIR)/test
	cp reproducible-build.rs $(TMPDIR)/test
	$(RUSTC) reproducible-build.rs --crate-type rlib --remap-path-prefix=$$PWD=/b
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfoo.rlib
	(cd $(TMPDIR)/test && $(RUSTC) reproducible-build.rs \
		--remap-path-prefix=$(TMPDIR)/test=/b \
		--crate-type rlib)
	cmp "$(TMPDIR)/libreproducible_build.rlib" "$(TMPDIR)/libfoo.rlib" || exit 1

remap_cwd_bin:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	mkdir $(TMPDIR)/test
	cp reproducible-build.rs $(TMPDIR)/test
	$(RUSTC) reproducible-build.rs --crate-type bin -C debuginfo=2 \
	  -Z remap-cwd-prefix=.
	cp $(TMPDIR)/reproducible-build $(TMPDIR)/first
	(cd $(TMPDIR)/test && \
	 $(RUSTC) reproducible-build.rs --crate-type bin -C debuginfo=2 \
	   -Z remap-cwd-prefix=.)
	cmp "$(TMPDIR)/first" "$(TMPDIR)/reproducible-build" || exit 1

remap_cwd_rlib:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	mkdir $(TMPDIR)/test
	cp reproducible-build.rs $(TMPDIR)/test
	$(RUSTC) reproducible-build.rs --crate-type rlib -C debuginfo=2 \
	  -Z remap-cwd-prefix=.
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfirst.rlib
	(cd $(TMPDIR)/test && \
	 $(RUSTC) reproducible-build.rs --crate-type rlib -C debuginfo=2 \
	   -Z remap-cwd-prefix=.)
	cmp "$(TMPDIR)/libfirst.rlib" "$(TMPDIR)/libreproducible_build.rlib" || exit 1

remap_cwd_to_empty:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	mkdir $(TMPDIR)/test
	cp reproducible-build.rs $(TMPDIR)/test
	$(RUSTC) reproducible-build.rs --crate-type rlib -C debuginfo=2 \
	  -Z remap-cwd-prefix=
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfirst.rlib
	(cd $(TMPDIR)/test && \
	 $(RUSTC) reproducible-build.rs --crate-type rlib -C debuginfo=2 \
	   -Z remap-cwd-prefix=)
	cmp "$(TMPDIR)/libfirst.rlib" "$(TMPDIR)/libreproducible_build.rlib" || exit 1

extern_flags:
	rm -rf $(TMPDIR) && mkdir $(TMPDIR)
	$(RUSTC) reproducible-build-aux.rs
	$(RUSTC) reproducible-build.rs \
		--extern reproducible_build_aux=$(TMPDIR)/libreproducible_build_aux.rlib \
		--crate-type rlib
	cp $(TMPDIR)/libreproducible_build_aux.rlib $(TMPDIR)/libbar.rlib
	cp $(TMPDIR)/libreproducible_build.rlib $(TMPDIR)/libfoo.rlib
	$(RUSTC) reproducible-build.rs \
		--extern reproducible_build_aux=$(TMPDIR)/libbar.rlib \
		--crate-type rlib
	cmp "$(TMPDIR)/libreproducible_build.rlib" "$(TMPDIR)/libfoo.rlib" || exit 1