]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-make-fulldeps/issue-36710/Makefile
Auto merge of #65838 - estebank:resilient-recovery, r=Centril
[rust.git] / src / test / run-make-fulldeps / issue-36710 / Makefile
index 928bdf532df8e0ab113a163e25d84831deea25f9..4f93d97636e6004df6f86731d5937e2e7ed0dbfb 100644 (file)
@@ -1,21 +1,12 @@
 -include ../tools.mk
 
-ifeq (musl,$(findstring musl,$(TARGET)))
-all: skip
-else
-all: test
-endif
+# ignore-musl
 
-test: foo
+all: foo
        $(call RUN,foo)
 
-skip:
-       echo "expected failure"
-
 foo: foo.rs $(call NATIVE_STATICLIB,foo)
-       $(RUSTC) $< -lfoo $(EXTRACXXFLAGS)
+       $(RUSTC) $< -lfoo $(EXTRARSCXXFLAGS)
 
 $(TMPDIR)/libfoo.o: foo.cpp
        $(call COMPILE_OBJ_CXX,$@,$<)
-
-.PHONY: all test skip