blob: 6de58c2db18d3e013d01202ac07c7400803e4476 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-include ../tools.mk
# Test for #39529.
# `-z text` causes ld to error if there are any non-PIC sections
ifeq ($(UNAME),Darwin)
all:
else ifdef IS_WINDOWS
all:
else
all:
$(RUSTC) hello.rs -C link-args=-Wl,-z,text
endif
|