1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-03-20 11:32:33 +00:00

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
This commit is contained in:
NAKAMURA Takumi 2013-09-20 13:12:24 +00:00
parent d338788a49
commit 8607525110

@ -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