Skip to content

Commit 55dab70

Browse files
committed
Don't run test on darwin
1 parent e77f856 commit 55dab70

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/test/run-make/fpic/Makefile

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
-include ../tools.mk
22

3-
# Test for #39529.
3+
# Test for #39529.
44
# `-z text` causes ld to error if there are any non-PIC sections
55

6+
ifeq ($(UNAME),Darwin)
7+
all:
8+
else ifdef IS_WINDOWS
9+
all:
10+
else
611
all:
7-
ifndef IS_WINDOWS
812
$(RUSTC) hello.rs -C link-args=-Wl,-z,text
913
endif

0 commit comments

Comments
 (0)