summaryrefslogtreecommitdiffstats
path: root/tests/run-make/print-cfg/Makefile
blob: 6b153e5b54edd36030379316a86e7ca3b1984271 (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
# needs-llvm-components: x86 arm

include ../tools.mk

all: default output_to_file
	$(RUSTC) --target x86_64-pc-windows-gnu --print cfg | $(CGREP) windows
	$(RUSTC) --target x86_64-pc-windows-gnu --print cfg | $(CGREP) x86_64
	$(RUSTC) --target i686-pc-windows-msvc --print cfg | $(CGREP) msvc
	$(RUSTC) --target i686-apple-darwin --print cfg | $(CGREP) macos
	$(RUSTC) --target i686-unknown-linux-gnu --print cfg | $(CGREP) gnu
	$(RUSTC) --target arm-unknown-linux-gnueabihf --print cfg | $(CGREP) target_abi=
	$(RUSTC) --target arm-unknown-linux-gnueabihf --print cfg | $(CGREP) eabihf

output_to_file:
	# Backend-independent, printed by rustc_driver_impl/src/lib.rs
	$(RUSTC) --target x86_64-pc-windows-gnu --print cfg=$(TMPDIR)/cfg.txt
	$(CGREP) windows < $(TMPDIR)/cfg.txt

	# Printed from CodegenBackend trait impl in rustc_codegen_llvm/src/lib.rs
	$(RUSTC) --print relocation-models=$(TMPDIR)/relocation-models.txt
	$(CGREP) dynamic-no-pic < $(TMPDIR)/relocation-models.txt

	# Printed by compiler/rustc_codegen_llvm/src/llvm_util.rs
	$(RUSTC) --target wasm32-unknown-unknown --print target-features=$(TMPDIR)/target-features.txt
	$(CGREP) reference-types < $(TMPDIR)/target-features.txt

	# Printed by C++ code in rustc_llvm/llvm-wrapper/PassWrapper.cpp
	$(RUSTC) --target wasm32-unknown-unknown --print target-cpus=$(TMPDIR)/target-cpus.txt
	$(CGREP) generic < $(TMPDIR)/target-cpus.txt

ifdef IS_WINDOWS
default:
	$(RUSTC) --print cfg | $(CGREP) windows
else
default:
	$(RUSTC) --print cfg | $(CGREP) unix
endif