[llvm-commits] [llvm] r110520 - in /llvm/trunk: test/BugPoint/crash-narrowfunctiontest.ll test/BugPoint/remove_arguments_test.ll tools/Makefile tools/bugpoint-passes/ tools/bugpoint-passes/TestPasses.cpp tools/bugpoint/TestPasses.cpp

NAKAMURA Takumi geek4civic at gmail.com
Mon Aug 9 06:52:08 PDT 2010


Rafael, thank you to comment.

2010/8/9 Rafael EspĂ­ndola <rafael.espindola at gmail.com>:
>> It breaks mingw(self and cross-linux) builds.
>> Would you like to suppress bugpoint-passes for Win32(s) for while?
>
> Do you know what is the XFAIL line I have to add to disable this tests
> for windows?

Not tests but building the directory tools/bugpoint-passes, I would like to say.
Linking BugpointPasses.dll fails.


FYI my local patch is;
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -55,4 +55,10 @@ ifeq ($(ENABLE_PIC),1)
   endif
 endif

+ifneq (,$(filter $(HOST_OS), Cygwin MingW)
+  ifneq ($(ENABLE_SHARED), 1)
+    PARALLEL_DIRS := $(filter-out bugpoint-passes, $(PARALLEL_DIRS))
+  endif
+endif
+
 include $(LEVEL)/Makefile.common


ps. I have not yet succeeded running tests on mingw for lack


...Takumi




More information about the llvm-commits mailing list