From: NAKAMURA Takumi Date: Fri, 20 Sep 2013 13:12:24 +0000 (+0000) Subject: llvm/tools/Makefile: Suppress building llvm-lto on cygming, for now, probably due... X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=86075251108afff556420effa670e7d07b203555;p=oota-llvm.git llvm/tools/Makefile: Suppress building llvm-lto on cygming, for now, probably due to LTO.dll. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@191088 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/tools/Makefile b/tools/Makefile index d3d4593a50c..4e7ef5db830 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -71,6 +71,8 @@ endif # On Win32, loadable modules can be built with ENABLE_SHARED. ifneq ($(ENABLE_SHARED),1) ifneq (,$(filter $(HOST_OS), Cygwin MingW)) + DIRS := $(filter-out llvm-lto, \ + $(DIRS)) PARALLEL_DIRS := $(filter-out bugpoint-passes, \ $(PARALLEL_DIRS)) endif