Skip to content

Commit 675e76a

Browse files
committed
---
yaml --- r: 110486 b: refs/heads/try c: 422ada0 h: refs/heads/master v: v3
1 parent 2510a0f commit 675e76a

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: c7fac4471201977fdb1c0c0a26c87287e12dc644
5-
refs/heads/try: 63b0466c629e00e8cdd4a5bd205182e7fe4dd5a5
5+
refs/heads/try: 422ada0be489b3f8bebf5231af4696492a47959b
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,18 @@
11
-include ../tools.mk
22

3+
ifneq ($(shell uname),FreeBSD)
34
all:
45
$(RUSTC) --dep-info --crate-type=lib lib.rs
5-
sleep 1
6+
sleep 2
67
touch foo.rs
78
-rm -f $(TMPDIR)/done
89
$(MAKE) -drf Makefile.foo
10+
sleep 2
911
rm $(TMPDIR)/done
1012
pwd
1113
$(MAKE) -drf Makefile.foo
1214
rm $(TMPDIR)/done && exit 1 || exit 0
15+
else
16+
all:
17+
18+
endif

branches/try/src/test/run-make/lto-smoke-c/Makefile

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

3-
ifneq ($(shell uname),Darwin)
3+
ifeq ($(shell uname),Darwin)
4+
else
5+
ifeq ($(shell uname),FreeBSD)
6+
EXTRAFLAGS := -lm -lpthread -lgcc_s
7+
else
48
EXTRAFLAGS := -lm -lrt -ldl -lpthread
59
endif
10+
endif
611

712
all:
813
$(RUSTC) foo.rs -Z lto

0 commit comments

Comments
 (0)