blob: c38dd8d6e8c4b74dfefa3a5fb0b90bb8961b9aad (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# ignore-cross-compile
include ../tools.mk
# ignore-windows
# ignore-macos
# Test for #39529.
# `-z text` causes ld to error if there are any non-PIC sections
all:
$(RUSTC) hello.rs -C link-args=-Wl,-z,text
|