File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed
branches/try2/src/test/run-make Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
5
5
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
- refs/heads/try2: 0e85e599dbcd08e2a0c0e1bfa3cf23ed4eb68197
8
+ refs/heads/try2: e9108cd7b80ad3ff3f2c1f93ad2807876596d758
9
9
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
Original file line number Diff line number Diff line change @@ -4,10 +4,17 @@ ifneq ($(shell uname),Darwin)
4
4
EXTRAFLAGS := -lm -lrt -ldl -lpthread
5
5
endif
6
6
7
+ # FIXME
8
+ ifneq ($(shell uname) ,FreeBSD)
7
9
all :
8
10
$(RUSTC ) foo.rs
9
11
ln -s $(call STATICLIB,foo-* ) $(call STATICLIB,foo)
10
12
$(CC ) bar.c -lfoo -o $(call RUN,bar) $(EXTRAFLAGS ) -lstdc++
11
13
$(call RUN,bar)
12
14
rm $(call STATICLIB,foo* )
13
15
$(call RUN,bar)
16
+
17
+ else
18
+ all :
19
+
20
+ endif
Original file line number Diff line number Diff line change 1
1
-include ../tools.mk
2
2
3
+ # FIXME
4
+ ifneq ($(shell uname) ,FreeBSD)
3
5
all :
4
6
$(RUSTC ) --dep-info $(TMPDIR ) /custom-deps-file.d --crate-type=lib lib.rs
5
7
sleep 1
10
12
pwd
11
13
$(MAKE ) -drf Makefile.foo
12
14
rm $(TMPDIR ) /done && exit 1 || exit 0
15
+ else
16
+ all :
17
+
18
+ endif
You can’t perform that action at this time.
0 commit comments