2016-02-17 22:42:36 -06:00
|
|
|
-include ../tools.mk
|
|
|
|
all:
|
|
|
|
$(RUSTC) reproducible-build-aux.rs
|
|
|
|
$(RUSTC) reproducible-build.rs -o"$(TMPDIR)/reproducible-build1"
|
|
|
|
$(RUSTC) reproducible-build.rs -o"$(TMPDIR)/reproducible-build2"
|
2016-03-22 10:54:22 -05:00
|
|
|
nm "$(TMPDIR)/reproducible-build1" | sort > "$(TMPDIR)/reproducible-build1.nm"
|
|
|
|
nm "$(TMPDIR)/reproducible-build2" | sort > "$(TMPDIR)/reproducible-build2.nm"
|
|
|
|
cmp "$(TMPDIR)/reproducible-build1.nm" "$(TMPDIR)/reproducible-build2.nm" || exit 1
|
2016-02-17 22:42:36 -06:00
|
|
|
$(RUSTC) reproducible-build-aux.rs -g
|
|
|
|
$(RUSTC) reproducible-build.rs -g -o"$(TMPDIR)/reproducible-build1-debug"
|
|
|
|
$(RUSTC) reproducible-build.rs -g -o"$(TMPDIR)/reproducible-build2-debug"
|
2016-03-22 10:54:22 -05:00
|
|
|
nm "$(TMPDIR)/reproducible-build1-debug" | sort > "$(TMPDIR)/reproducible-build1-debug.nm"
|
|
|
|
nm "$(TMPDIR)/reproducible-build2-debug" | sort > "$(TMPDIR)/reproducible-build2-debug.nm"
|
|
|
|
cmp "$(TMPDIR)/reproducible-build1-debug.nm" "$(TMPDIR)/reproducible-build2-debug.nm" || exit 1
|
2016-02-17 22:42:36 -06:00
|
|
|
$(RUSTC) reproducible-build-aux.rs -O
|
|
|
|
$(RUSTC) reproducible-build.rs -O -o"$(TMPDIR)/reproducible-build1-opt"
|
|
|
|
$(RUSTC) reproducible-build.rs -O -o"$(TMPDIR)/reproducible-build2-opt"
|
2016-03-22 10:54:22 -05:00
|
|
|
nm "$(TMPDIR)/reproducible-build1-opt" | sort > "$(TMPDIR)/reproducible-build1-opt.nm"
|
|
|
|
nm "$(TMPDIR)/reproducible-build2-opt" | sort > "$(TMPDIR)/reproducible-build2-opt.nm"
|
|
|
|
cmp "$(TMPDIR)/reproducible-build1-opt.nm" "$(TMPDIR)/reproducible-build2-opt.nm" || exit 1
|