Skip to content

Commit 7be0226

Browse files
brsonalexcrichton
authored andcommitted
---
yaml --- r: 110497 b: refs/heads/snap-stage3 c: e9108cd h: refs/heads/master i: 110495: 74917ba v: v3
1 parent a9ac986 commit 7be0226

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: e415c25bcd81dc1f9a5a3d25d9b48ed2d545336b
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: 0e85e599dbcd08e2a0c0e1bfa3cf23ed4eb68197
4+
refs/heads/snap-stage3: e9108cd7b80ad3ff3f2c1f93ad2807876596d758
55
refs/heads/try: 597a645456b55e1c886ce15d23a192abdf4d55cf
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/src/test/run-make/c-link-to-rust-staticlib/Makefile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ ifneq ($(shell uname),Darwin)
44
EXTRAFLAGS := -lm -lrt -ldl -lpthread
55
endif
66

7+
# FIXME
8+
ifneq ($(shell uname),FreeBSD)
79
all:
810
$(RUSTC) foo.rs
911
ln -s $(call STATICLIB,foo-*) $(call STATICLIB,foo)
1012
$(CC) bar.c -lfoo -o $(call RUN,bar) $(EXTRAFLAGS) -lstdc++
1113
$(call RUN,bar)
1214
rm $(call STATICLIB,foo*)
1315
$(call RUN,bar)
16+
17+
else
18+
all:
19+
20+
endif

branches/snap-stage3/src/test/run-make/dep-info-custom/Makefile

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

3+
# FIXME
4+
ifneq ($(shell uname),FreeBSD)
35
all:
46
$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
57
sleep 1
@@ -10,3 +12,7 @@ all:
1012
pwd
1113
$(MAKE) -drf Makefile.foo
1214
rm $(TMPDIR)/done && exit 1 || exit 0
15+
else
16+
all:
17+
18+
endif

0 commit comments

Comments
 (0)