We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e85e59 commit e9108cdCopy full SHA for e9108cd
src/test/run-make/c-link-to-rust-staticlib/Makefile
@@ -4,10 +4,17 @@ ifneq ($(shell uname),Darwin)
4
EXTRAFLAGS := -lm -lrt -ldl -lpthread
5
endif
6
7
+# FIXME
8
+ifneq ($(shell uname),FreeBSD)
9
all:
10
$(RUSTC) foo.rs
11
ln -s $(call STATICLIB,foo-*) $(call STATICLIB,foo)
12
$(CC) bar.c -lfoo -o $(call RUN,bar) $(EXTRAFLAGS) -lstdc++
13
$(call RUN,bar)
14
rm $(call STATICLIB,foo*)
15
16
+
17
+else
18
+all:
19
20
+endif
src/test/run-make/dep-info-custom/Makefile
@@ -1,5 +1,7 @@
1
-include ../tools.mk
2
3
$(RUSTC) --dep-info $(TMPDIR)/custom-deps-file.d --crate-type=lib lib.rs
sleep 1
@@ -10,3 +12,7 @@ all:
pwd
$(MAKE) -drf Makefile.foo
rm $(TMPDIR)/done && exit 1 || exit 0
0 commit comments