mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
Disable plugins / shared stuff generation on windows targets.
This fixes fallout from recent PIC/delibtoolize changes and unbreaks build on cygming. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@66686 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6b3ef693d7
commit
ad9d21a952
@ -10,5 +10,10 @@
|
||||
LEVEL = ../..
|
||||
PARALLEL_DIRS = Utils Instrumentation Scalar IPO Hello
|
||||
|
||||
# No support for plugins on windows targets
|
||||
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
|
||||
PARALLEL_DIRS := $(filter-out Hello, $(DIRS))
|
||||
endif
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
||||
|
@ -31,4 +31,9 @@ ifeq ($(ENABLE_PIC),1)
|
||||
endif
|
||||
endif
|
||||
|
||||
# No support for lto / gold on windows targets
|
||||
ifeq ($(OS), $(filter $(OS), Cygwin MingW))
|
||||
DIRS := $(filter-out lto gold, $(DIRS))
|
||||
endif
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
Loading…
Reference in New Issue
Block a user