]> git.proxmox.com Git - rustc.git/blame - src/test/run-make-fulldeps/target-specs/Makefile
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / run-make-fulldeps / target-specs / Makefile
CommitLineData
f2b60f7d 1include ../tools.mk
1a4d82fc
JJ
2all:
3 $(RUSTC) foo.rs --target=my-awesome-platform.json --crate-type=lib --emit=asm
ff7c6d11
XL
4 $(CGREP) -v morestack < $(TMPDIR)/foo.s
5 $(RUSTC) foo.rs --target=my-invalid-platform.json 2>&1 | $(CGREP) "Error loading target specification"
6 $(RUSTC) foo.rs --target=my-incomplete-platform.json 2>&1 | $(CGREP) 'Field llvm-target'
1a4d82fc 7 RUST_TARGET_PATH=. $(RUSTC) foo.rs --target=my-awesome-platform --crate-type=lib --emit=asm
abe05a73 8 RUST_TARGET_PATH=. $(RUSTC) foo.rs --target=my-x86_64-unknown-linux-gnu-platform --crate-type=lib --emit=asm
476ff2be 9 $(RUSTC) -Z unstable-options --target=my-awesome-platform.json --print target-spec-json > $(TMPDIR)/test-platform.json && $(RUSTC) -Z unstable-options --target=$(TMPDIR)/test-platform.json --print target-spec-json | diff -q $(TMPDIR)/test-platform.json -
136023e0 10 $(RUSTC) foo.rs --target=definitely-not-builtin-target 2>&1 | $(CGREP) 'may not set is_builtin'
064997fb 11 $(RUSTC) foo.rs --target=mismatching-data-layout --crate-type=lib