1 #===-- Makefile.rules - Common make rules for LLVM ---------*- Makefile -*--===#
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 #===------------------------------------------------------------------------===#
10 # This file is included by all of the LLVM makefiles. For details on how to use
11 # it properly, please see the document MakefileGuide.html in the docs directory.
13 #===-----------------------------------------------------------------------====#
15 ################################################################################
16 # TARGETS: Define standard targets that can be invoked
17 ################################################################################
19 #--------------------------------------------------------------------
20 # Define the various target sets
21 #--------------------------------------------------------------------
22 RecursiveTargets := all clean clean-all install uninstall install-bytecode \
24 LocalTargets := all-local clean-local clean-all-local check-local \
25 install-local printvars uninstall-local \
26 install-bytecode-local
27 TopLevelTargets := check dist dist-check dist-clean dist-gzip dist-bzip2 \
29 UserTargets := $(RecursiveTargets) $(LocalTargets) $(TopLevelTargets)
30 InternalTargets := preconditions distdir dist-hook
32 ################################################################################
33 # INITIALIZATION: Basic things the makefile needs
34 ################################################################################
36 #--------------------------------------------------------------------
37 # Set the VPATH so that we can find source files.
38 #--------------------------------------------------------------------
41 #--------------------------------------------------------------------
42 # Reset the list of suffixes we know how to build.
43 #--------------------------------------------------------------------
45 .SUFFIXES: .c .cpp .cc .h .hpp .o .a .bc .td .ps .dot .ll .m .mm
46 .SUFFIXES: $(SHLIBEXT) $(SUFFIXES)
48 #--------------------------------------------------------------------
49 # Mark all of these targets as phony to avoid implicit rule search
50 #--------------------------------------------------------------------
51 .PHONY: $(UserTargets) $(InternalTargets)
53 #--------------------------------------------------------------------
54 # Make sure all the user-target rules are double colon rules and
55 # they are defined first.
56 #--------------------------------------------------------------------
60 ################################################################################
61 # PRECONDITIONS: that which must be built/checked first
62 ################################################################################
64 SrcMakefiles := $(filter %Makefile %Makefile.tests,\
65 $(wildcard $(PROJ_SRC_DIR)/Makefile*))
66 ObjMakefiles := $(subst $(PROJ_SRC_DIR),$(PROJ_OBJ_DIR),$(SrcMakefiles))
67 ConfigureScript := $(PROJ_SRC_ROOT)/configure
68 ConfigStatusScript := $(PROJ_OBJ_ROOT)/config.status
69 MakefileConfigIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.config.in))
70 MakefileCommonIn := $(strip $(wildcard $(PROJ_SRC_ROOT)/Makefile.common.in))
71 MakefileConfig := $(PROJ_OBJ_ROOT)/Makefile.config
72 MakefileCommon := $(PROJ_OBJ_ROOT)/Makefile.common
73 PreConditions := $(ConfigStatusScript) $(ObjMakefiles)
74 ifneq ($(MakefileCommonIn),)
75 PreConditions += $(MakefileCommon)
78 ifneq ($(MakefileConfigIn),)
79 PreConditions += $(MakefileConfig)
82 preconditions: $(PreConditions)
84 #------------------------------------------------------------------------
85 # Make sure the BUILT_SOURCES are built first
86 #------------------------------------------------------------------------
87 $(filter-out clean clean-local,$(UserTargets)):: $(BUILT_SOURCES)
90 ifneq ($(strip $(BUILT_SOURCES)),)
91 -$(Verb) $(RM) -f $(BUILT_SOURCES)
94 ifneq ($(PROJ_OBJ_ROOT),$(PROJ_SRC_ROOT))
96 $(Verb) if test -x config.status ; then \
97 $(EchoCmd) Wiping out $(PROJ_OBJ_ROOT) ; \
98 $(MKDIR) .spotless.save ; \
99 $(MV) config.status .spotless.save ; \
100 $(MV) mklib .spotless.save ; \
101 $(MV) projects .spotless.save ; \
103 $(MV) .spotless.save/config.status . ; \
104 $(MV) .spotless.save/mklib . ; \
105 $(MV) .spotless.save/projects . ; \
106 $(RM) -rf .spotless.save ; \
107 $(EchoCmd) Rebuilding configuration of $(PROJ_OBJ_ROOT) ; \
108 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
109 $(ConfigStatusScript) ; \
111 $(EchoCmd) "make spotless" can only be run from $(PROJ_OBJ_ROOT); \
115 $(EchoCmd) "spotless target not supported for objdir == srcdir"
118 $(BUILT_SOURCES) : $(ObjMakefiles)
120 #------------------------------------------------------------------------
121 # Make sure we're not using a stale configuration
122 #------------------------------------------------------------------------
124 $(Echo) Reconfiguring $(PROJ_OBJ_ROOT)
125 $(Verb) cd $(PROJ_OBJ_ROOT) && \
126 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
127 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
129 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
130 $(ConfigStatusScript)
132 # FIXME: The {PIC16,MSP430}/AsmPrinter line here is a hack to force a reconfigure to pick
133 # up AsmPrinter changes. Remove it after a reasonable delay from 2009-08-13.
135 .PRECIOUS: $(ConfigStatusScript)
136 $(ConfigStatusScript): $(ConfigureScript) $(LLVM_SRC_ROOT)/lib/Target/PIC16/AsmPrinter/Makefile $(LLVM_SRC_ROOT)/lib/Target/MSP430/AsmPrinter/Makefile
137 $(Echo) Reconfiguring with $<
138 $(Verb) cd $(PROJ_OBJ_ROOT) && \
139 if test -w $(PROJ_OBJ_ROOT)/config.cache ; then \
140 $(RM) $(PROJ_OBJ_ROOT)/config.cache ; \
142 $(ConfigStatusScript) --recheck $(ConfigureScriptFLAGS) && \
143 $(ConfigStatusScript)
145 #------------------------------------------------------------------------
146 # Make sure the configuration makefile is up to date
147 #------------------------------------------------------------------------
148 ifneq ($(MakefileConfigIn),)
149 $(MakefileConfig): $(MakefileConfigIn) $(ConfigStatusScript)
150 $(Echo) Regenerating $@
151 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.config
154 ifneq ($(MakefileCommonIn),)
155 $(MakefileCommon): $(MakefileCommonIn) $(ConfigStatusScript)
156 $(Echo) Regenerating $@
157 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ConfigStatusScript) Makefile.common
160 #------------------------------------------------------------------------
161 # If the Makefile in the source tree has been updated, copy it over into the
162 # build tree. But, only do this if the source and object makefiles differ
163 #------------------------------------------------------------------------
164 ifneq ($(PROJ_OBJ_DIR),$(PROJ_SRC_DIR))
166 Makefile: $(PROJ_SRC_DIR)/Makefile $(ExtraMakefiles)
167 $(Echo) "Updating Makefile"
168 $(Verb) $(MKDIR) $(@D)
169 $(Verb) $(CP) -f $< $@
171 # Copy the Makefile.* files unless we're in the root directory which avoids
172 # the copying of Makefile.config.in or other things that should be explicitly
174 $(PROJ_OBJ_DIR)/Makefile% : $(PROJ_SRC_DIR)/Makefile%
176 *Makefile.rules) ;; \
178 *) $(EchoCmd) "Updating $(@F)" ; \
185 #------------------------------------------------------------------------
186 # Set up the basic dependencies
187 #------------------------------------------------------------------------
188 $(UserTargets):: $(PreConditions)
192 clean-all:: clean-local clean-all-local
193 install:: install-local
194 uninstall:: uninstall-local
195 install-local:: all-local
196 install-bytecode:: install-bytecode-local
198 ###############################################################################
199 # LLVMC: Provide rules for compiling llvmc-based driver
200 ###############################################################################
202 ifdef LLVMC_BASED_DRIVER
204 TOOLNAME = $(LLVMC_BASED_DRIVER)
206 LLVMLIBS = CompilerDriver.a
207 LINK_COMPONENTS = support system
209 endif # LLVMC_BASED_DRIVER
211 ###############################################################################
212 # VARIABLES: Set up various variables based on configuration data
213 ###############################################################################
215 # Variable for if this make is for a "cleaning" target
216 ifneq ($(strip $(filter clean clean-local dist-clean,$(MAKECMDGOALS))),)
220 #--------------------------------------------------------------------
221 # Variables derived from configuration we are building
222 #--------------------------------------------------------------------
225 ifeq ($(ENABLE_OPTIMIZED),1)
227 # Don't use -fomit-frame-pointer on Darwin or FreeBSD.
228 ifneq ($(HOST_OS),FreeBSD)
229 ifneq ($(HOST_OS),Darwin)
230 OmitFramePointer := -fomit-frame-pointer
234 # Darwin requires -fstrict-aliasing to be explicitly enabled.
235 # Avoid -fstrict-aliasing on Darwin for now, there are unresolved issues
236 # with -fstrict-aliasing and ipa-type-escape radr://6756684
237 #ifeq ($(HOST_OS),Darwin)
238 # EXTRA_OPTIONS += -fstrict-aliasing -Wstrict-aliasing
240 CXX.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
241 C.Flags += $(OPTIMIZE_OPTION) $(OmitFramePointer)
242 LD.Flags += $(OPTIMIZE_OPTION)
244 BuildMode := $(BuildMode)+Debug
251 ifdef NO_DEBUG_SYMBOLS
252 BuildMode := Unoptimized
266 ifeq ($(ENABLE_PROFILING),1)
267 BuildMode := $(BuildMode)+Profile
268 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags)) -pg -g
269 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags)) -pg -g
270 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags)) -pg -g
274 #ifeq ($(ENABLE_VISIBILITY_INLINES_HIDDEN),1)
275 # CXX.Flags += -fvisibility-inlines-hidden
278 ifdef ENABLE_EXPENSIVE_CHECKS
279 # GNU libstdc++ uses RTTI if you define _GLIBCXX_DEBUG, which we did above.
280 # See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=40160
284 # IF REQUIRES_EH=1 is specified then don't disable exceptions
286 CXX.Flags += -fno-exceptions
288 # If the library requires EH, it also requires RTTI.
292 ifdef REQUIRES_FRAME_POINTER
293 CXX.Flags := $(filter-out -fomit-frame-pointer,$(CXX.Flags))
294 C.Flags := $(filter-out -fomit-frame-pointer,$(C.Flags))
295 LD.Flags := $(filter-out -fomit-frame-pointer,$(LD.Flags))
298 # If REQUIRES_RTTI=1 is specified then don't disable run-time type id.
299 ifneq ($(REQUIRES_RTTI), 1)
300 CXX.Flags += -fno-rtti
303 ifdef ENABLE_COVERAGE
304 BuildMode := $(BuildMode)+Coverage
305 CXX.Flags += -ftest-coverage -fprofile-arcs
306 C.Flags += -ftest-coverage -fprofile-arcs
309 # If DISABLE_ASSERTIONS=1 is specified (make command line or configured),
310 # then disable assertions by defining the appropriate preprocessor symbols.
311 ifndef DISABLE_ASSERTIONS
312 BuildMode := $(BuildMode)+Asserts
313 CPP.Defines += -D_DEBUG
315 CPP.Defines += -DNDEBUG
318 # If ENABLE_EXPENSIVE_CHECKS=1 is specified (make command line or
319 # configured), then enable expensive checks by defining the
320 # appropriate preprocessor symbols.
321 ifdef ENABLE_EXPENSIVE_CHECKS
322 BuildMode := $(BuildMode)+Checks
323 CPP.Defines += -D_GLIBCXX_DEBUG -DXDEBUG
326 # LOADABLE_MODULE implies several other things so we force them to be
328 ifdef LOADABLE_MODULE
330 LINK_LIBS_IN_SHARED := 1
338 ifeq ($(ENABLE_PIC),1)
339 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
340 # Nothing. Win32 defaults to PIC and warns when given -fPIC
342 ifeq ($(HOST_OS),Darwin)
343 # Common symbols not allowed in dylib files
344 CXX.Flags += -fno-common
345 C.Flags += -fno-common
347 # Linux and others; pass -fPIC
353 ifeq ($(HOST_OS),Darwin)
354 CXX.Flags += -mdynamic-no-pic
355 C.Flags += -mdynamic-no-pic
359 # Support makefile variable to disable any kind of timestamp/non-deterministic
360 # info from being used in the build.
361 ifeq ($(ENABLE_TIMESTAMPS),1)
362 DOTDIR_TIMESTAMP_COMMAND := $(DATE)
364 DOTDIR_TIMESTAMP_COMMAND := echo 'Created.'
367 ifeq ($(HOST_OS),MingW)
369 CPP.Defines += -D__NO_CTYPE_INLINE
370 ifeq ($(LLVM_CROSS_COMPILING),1)
371 # Work around http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=525016
373 LD.Flags += -Wl,--allow-multiple-definition
378 CXX.Flags += -Woverloaded-virtual
379 CPP.BaseFlags += $(CPP.Defines)
382 # Make Floating point IEEE compliant on Alpha.
385 CPP.BaseFlags += -mieee
386 ifeq ($(ENABLE_PIC),0)
388 CPP.BaseFlags += -fPIC
393 LD.Flags += -Wl,--no-relax
396 #--------------------------------------------------------------------
397 # Directory locations
398 #--------------------------------------------------------------------
400 ifeq ($(LLVM_CROSS_COMPILING),1)
401 BuildLLVMToolDir := $(LLVM_OBJ_ROOT)/BuildTools/$(BuildMode)/bin
404 ObjRootDir := $(PROJ_OBJ_DIR)/$(BuildMode)
405 ObjDir := $(ObjRootDir)
406 LibDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/lib
407 ToolDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/bin
408 ExmplDir := $(PROJ_OBJ_ROOT)/$(BuildMode)/examples
409 LLVMLibDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/lib
410 LLVMToolDir := $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
411 LLVMExmplDir:= $(LLVM_OBJ_ROOT)/$(BuildMode)/examples
413 #--------------------------------------------------------------------
414 # Locations of shared libraries
415 #--------------------------------------------------------------------
418 SharedLibDir := $(LibDir)
419 LLVMSharedLibDir := $(LLVMLibDir)
421 # Win32.DLL prefers to be located on the "PATH" of binaries.
422 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
423 SharedLibDir := $(ToolDir)
424 LLVMSharedLibDir := $(LLVMToolDir)
426 ifeq ($(HOST_OS),Cygwin)
433 #--------------------------------------------------------------------
434 # LLVM Capable Compiler
435 #--------------------------------------------------------------------
437 ifeq ($(LLVMCC_OPTION),llvm-gcc)
439 LLVMCXX := $(LLVMGXX)
441 ifeq ($(LLVMCC_OPTION),clang)
442 ifneq ($(CLANGPATH),)
443 LLVMCC := $(CLANGPATH)
444 LLVMCXX := $(CLANGXXPATH)
446 ifeq ($(ENABLE_BUILT_CLANG),1)
447 LLVMCC := $(LLVMToolDir)/clang
448 LLVMCXX := $(LLVMToolDir)/clang++
454 #--------------------------------------------------------------------
455 # Full Paths To Compiled Tools and Utilities
456 #--------------------------------------------------------------------
457 EchoCmd = $(ECHO) llvm[$(MAKELEVEL)]:
460 LLVMAS := $(LLVMToolDir)/llvm-as$(EXEEXT)
463 ifeq ($(LLVM_CROSS_COMPILING),1)
464 TBLGEN := $(BuildLLVMToolDir)/tblgen$(BUILD_EXEEXT)
466 TBLGEN := $(LLVMToolDir)/tblgen$(EXEEXT)
469 LLVM_CONFIG := $(LLVMToolDir)/llvm-config
471 LLVMLD := $(LLVMToolDir)/llvm-ld$(EXEEXT)
474 LLVMDIS := $(LLVMToolDir)/llvm-dis$(EXEEXT)
477 LLI := $(LLVMToolDir)/lli$(EXEEXT)
480 LLC := $(LLVMToolDir)/llc$(EXEEXT)
483 LOPT := $(LLVMToolDir)/opt$(EXEEXT)
486 LBUGPOINT := $(LLVMToolDir)/bugpoint$(EXEEXT)
489 #--------------------------------------------------------------------
490 # Adjust to user's request
491 #--------------------------------------------------------------------
493 ifeq ($(HOST_OS),Darwin)
494 DARWIN_VERSION := `sw_vers -productVersion`
495 # Strip a number like 10.4.7 to 10.4
496 DARWIN_VERSION := $(shell echo $(DARWIN_VERSION)| sed -E 's/(10.[0-9]).*/\1/')
497 # Get "4" out of 10.4 for later pieces in the makefile.
498 DARWIN_MAJVERS := $(shell echo $(DARWIN_VERSION)| sed -E 's/10.([0-9]).*/\1/')
500 SharedLinkOptions=-Wl,-flat_namespace -Wl,-undefined,suppress \
503 SharedLinkOptions += -mmacosx-version-min=$(DARWIN_VERSION)
506 SharedLinkOptions=-shared
509 ifeq ($(TARGET_OS),Darwin)
511 TargetCommonOpts += -mmacosx-version-min=$(DARWIN_VERSION)
516 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
517 ifneq ($(HOST_OS),Darwin)
518 LD.Flags += $(RPATH) -Wl,'$$ORIGIN'
520 ifneq ($(DARWIN_MAJVERS),4)
521 LD.Flags += $(RPATH) -Wl,$(SharedLibDir)
534 # Adjust settings for verbose mode
537 AR.Flags += >/dev/null 2>/dev/null
538 ConfigureScriptFLAGS += >$(PROJ_OBJ_DIR)/configure.out 2>&1
540 ConfigureScriptFLAGS :=
543 # By default, strip symbol information from executable
545 Strip := $(PLATFORMSTRIPOPTS)
546 StripWarnMsg := "(without symbols)"
547 Install.StripFlag += -s
550 # Adjust linker flags for building an executable
551 ifneq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
552 ifneq ($(HOST_OS), Darwin)
554 LD.Flags += $(RPATH) -Wl,'$$ORIGIN/../lib'
556 LD.Flags += $(RPATH) -Wl,$(ExmplDir) $(RDYNAMIC)
558 LD.Flags += $(RPATH) -Wl,$(ToolDir) $(RDYNAMIC)
562 ifneq ($(DARWIN_MAJVERS),4)
563 LD.Flags += $(RPATH) -Wl,@executable_path/../lib
569 #----------------------------------------------------------
570 # Options To Invoke Tools
571 #----------------------------------------------------------
574 CompileCommonOpts += -pedantic -Wno-long-long
576 CompileCommonOpts += -Wall -W -Wno-unused-parameter -Wwrite-strings \
578 # Enable cast-qual for C++; the workaround is to use const_cast.
579 CXX.Flags += -Wcast-qual
581 ifeq ($(HOST_OS),HP-UX)
582 CompileCommonOpts := -D_REENTRANT -D_HPUX_SOURCE
585 # If we are building a universal binary on Mac OS/X, pass extra options. This
586 # is useful to people that want to link the LLVM libraries into their universal
589 # The following can be optionally specified:
590 # UNIVERSAL_SDK_PATH variable can be specified as a path to the SDK to use.
591 # For Mac OS/X 10.4 Intel machines, the traditional one is:
592 # UNIVERSAL_SDK_PATH=/Developer/SDKs/MacOSX10.4u.sdk/
593 # UNIVERSAL_ARCH can be optionally specified to be a list of architectures
594 # to build for, e.g. UNIVERSAL_ARCH="i386 ppc ppc64". This defaults to
597 ifndef UNIVERSAL_ARCH
598 UNIVERSAL_ARCH := i386 ppc
600 UNIVERSAL_ARCH_OPTIONS := $(UNIVERSAL_ARCH:%=-arch %)
601 CompileCommonOpts += $(UNIVERSAL_ARCH_OPTIONS)
602 ifdef UNIVERSAL_SDK_PATH
603 CompileCommonOpts += -isysroot $(UNIVERSAL_SDK_PATH)
606 # Building universal cannot compute dependencies automatically.
607 DISABLE_AUTO_DEPENDENCIES=1
609 ifeq ($(TARGET_OS),Darwin)
610 ifeq ($(ARCH),x86_64)
611 TargetCommonOpts = -m64
614 TargetCommonOpts = -m32
620 ifeq ($(HOST_OS),SunOS)
621 CPP.BaseFlags += -include llvm/System/Solaris.h
624 ifeq ($(HOST_OS),AuroraUX)
625 CPP.BaseFlags += -include llvm/System/Solaris.h
626 endif # !HOST_OS - AuroraUX.
628 LD.Flags += -L$(LibDir) -L$(LLVMLibDir)
629 CPP.BaseFlags += -D_GNU_SOURCE -D__STDC_LIMIT_MACROS -D__STDC_CONSTANT_MACROS
630 # All -I flags should go here, so that they don't confuse llvm-config.
631 CPP.Flags += $(sort -I$(PROJ_OBJ_DIR) -I$(PROJ_SRC_DIR) \
632 $(patsubst %,-I%/include,\
633 $(PROJ_OBJ_ROOT) $(PROJ_SRC_ROOT) \
634 $(LLVM_OBJ_ROOT) $(LLVM_SRC_ROOT))) \
637 ifeq ($(BUILD_COMPONENT), 1)
638 Compile.C = $(BUILD_CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
639 $(TargetCommonOpts) $(CompileCommonOpts) -c
640 Compile.CXX = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
642 $(TargetCommonOpts) $(CompileCommonOpts) -c
643 Preprocess.CXX= $(BUILD_CXX) $(CPP.Flags) $(CPPFLAGS) $(TargetCommonOpts) \
644 $(CompileCommonOpts) $(CXX.Flags) -E
645 Link = $(BUILD_CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) \
647 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
649 Compile.C = $(CC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
650 $(TargetCommonOpts) $(CompileCommonOpts) -c
651 Compile.CXX = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
652 $(TargetCommonOpts) $(CompileCommonOpts) -c
653 Preprocess.CXX= $(CXX) $(CPP.Flags) $(TargetCommonOpts) $(CPPFLAGS) \
654 $(CompileCommonOpts) $(CXX.Flags) -E
655 Link = $(CXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(LDFLAGS) \
656 $(TargetCommonOpts) $(CompileCommonOpts) $(LD.Flags) $(Strip)
659 BCCompile.C = $(LLVMCC) $(CPP.Flags) $(C.Flags) $(CFLAGS) $(CPPFLAGS) \
660 $(TargetCommonOpts) $(CompileCommonOpts)
661 Preprocess.C = $(CC) $(CPP.Flags) $(C.Flags) $(CPPFLAGS) \
662 $(TargetCommonOpts) $(CompileCommonOpts) -E
664 BCCompile.CXX = $(LLVMCXX) $(CPP.Flags) $(CXX.Flags) $(CXXFLAGS) $(CPPFLAGS) \
665 $(TargetCommonOpts) $(CompileCommonOpts)
667 ProgInstall = $(INSTALL) $(Install.StripFlag) -m 0755
668 ScriptInstall = $(INSTALL) -m 0755
669 DataInstall = $(INSTALL) -m 0644
671 # When compiling under Mingw/Cygwin, the tblgen tool expects Windows
672 # paths. In this case, the SYSPATH function (defined in
673 # Makefile.config) transforms Unix paths into Windows paths.
674 TableGen = $(TBLGEN) -I $(call SYSPATH, $(PROJ_SRC_DIR)) \
675 -I $(call SYSPATH, $(LLVM_SRC_ROOT)/include) \
676 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/include) \
677 -I $(call SYSPATH, $(PROJ_SRC_ROOT)/lib/Target)
679 Archive = $(AR) $(AR.Flags)
680 LArchive = $(LLVMToolDir)/llvm-ar rcsf
689 #----------------------------------------------------------
690 # Get the list of source files and compute object file
692 #----------------------------------------------------------
695 Sources := $(notdir $(wildcard $(PROJ_SRC_DIR)/*.cpp \
696 $(PROJ_SRC_DIR)/*.cc $(PROJ_SRC_DIR)/*.c))
698 Sources := $(SOURCES)
702 Sources += $(filter %.cpp %.c %.cc,$(BUILT_SOURCES))
705 BaseNameSources := $(sort $(basename $(Sources)))
707 ObjectsO := $(BaseNameSources:%=$(ObjDir)/%.o)
708 ObjectsBC := $(BaseNameSources:%=$(ObjDir)/%.bc)
710 ###############################################################################
711 # DIRECTORIES: Handle recursive descent of directory structure
712 ###############################################################################
714 #---------------------------------------------------------
715 # Provide rules to make install dirs. This must be early
716 # in the file so they get built before dependencies
717 #---------------------------------------------------------
719 $(DESTDIR)$(PROJ_bindir) $(DESTDIR)$(PROJ_libdir) $(DESTDIR)$(PROJ_includedir) $(DESTDIR)$(PROJ_etcdir)::
722 # To create other directories, as needed, and timestamp their creation
724 $(Verb) $(MKDIR) $* > /dev/null
725 $(Verb) $(DOTDIR_TIMESTAMP_COMMAND) > $@
727 .PRECIOUS: $(ObjDir)/.dir $(LibDir)/.dir $(ToolDir)/.dir $(ExmplDir)/.dir
728 .PRECIOUS: $(LLVMLibDir)/.dir $(LLVMToolDir)/.dir $(LLVMExmplDir)/.dir
730 #---------------------------------------------------------
731 # Handle the DIRS options for sequential construction
732 #---------------------------------------------------------
738 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
739 $(RecursiveTargets)::
740 $(Verb) for dir in $(DIRS); do \
741 if ([ ! -f $$dir/Makefile ] || \
742 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
744 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
746 ($(MAKE) -C $$dir $@ ) || exit 1; \
749 $(RecursiveTargets)::
750 $(Verb) for dir in $(DIRS); do \
751 ($(MAKE) -C $$dir $@ ) || exit 1; \
757 #---------------------------------------------------------
758 # Handle the EXPERIMENTAL_DIRS options ensuring success
759 # after each directory is built.
760 #---------------------------------------------------------
761 ifdef EXPERIMENTAL_DIRS
762 $(RecursiveTargets)::
763 $(Verb) for dir in $(EXPERIMENTAL_DIRS); do \
764 if ([ ! -f $$dir/Makefile ] || \
765 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
767 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
769 ($(MAKE) -C $$dir $@ ) || exit 0; \
773 #-----------------------------------------------------------
774 # Handle the OPTIONAL_PARALLEL_DIRS options for optional parallel construction
775 #-----------------------------------------------------------
776 ifdef OPTIONAL_PARALLEL_DIRS
777 PARALLEL_DIRS += $(foreach T,$(OPTIONAL_PARALLEL_DIRS),$(shell test -d $(PROJ_SRC_DIR)/$(T) && echo "$(T)"))
780 #-----------------------------------------------------------
781 # Handle the PARALLEL_DIRS options for parallel construction
782 #-----------------------------------------------------------
785 SubDirs += $(PARALLEL_DIRS)
787 # Unfortunately, this list must be maintained if new recursive targets are added
788 all :: $(addsuffix /.makeall ,$(PARALLEL_DIRS))
789 clean :: $(addsuffix /.makeclean ,$(PARALLEL_DIRS))
790 clean-all:: $(addsuffix /.makeclean-all,$(PARALLEL_DIRS))
791 install :: $(addsuffix /.makeinstall ,$(PARALLEL_DIRS))
792 uninstall:: $(addsuffix /.makeuninstall,$(PARALLEL_DIRS))
793 install-bytecode :: $(addsuffix /.makeinstall-bytecode,$(PARALLEL_DIRS))
794 unitcheck:: $(addsuffix /.makeunitcheck,$(PARALLEL_DIRS))
796 ParallelTargets := $(foreach T,$(RecursiveTargets),%/.make$(T))
799 $(Verb) if ([ ! -f $(@D)/Makefile ] || \
800 command test $(@D)/Makefile -ot \
801 $(PROJ_SRC_DIR)/$(@D)/Makefile ); then \
803 $(CP) $(PROJ_SRC_DIR)/$(@D)/Makefile $(@D)/Makefile; \
805 $(MAKE) -C $(@D) $(subst $(@D)/.make,,$@)
808 #---------------------------------------------------------
809 # Handle the OPTIONAL_DIRS options for directores that may
811 #---------------------------------------------------------
814 SubDirs += $(OPTIONAL_DIRS)
816 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
817 $(RecursiveTargets)::
818 $(Verb) for dir in $(OPTIONAL_DIRS); do \
819 if [ -d $(PROJ_SRC_DIR)/$$dir ]; then\
820 if ([ ! -f $$dir/Makefile ] || \
821 command test $$dir/Makefile -ot $(PROJ_SRC_DIR)/$$dir/Makefile ); then \
823 $(CP) $(PROJ_SRC_DIR)/$$dir/Makefile $$dir/Makefile; \
825 ($(MAKE) -C$$dir $@ ) || exit 1; \
829 $(RecursiveTargets)::
830 $(Verb) for dir in $(OPTIONAL_DIRS); do \
831 ($(MAKE) -C$$dir $@ ) || exit 1; \
836 #---------------------------------------------------------
837 # Handle the CONFIG_FILES options
838 #---------------------------------------------------------
843 $(Echo) Install circumvented with NO_INSTALL
845 $(Echo) UnInstall circumvented with NO_INSTALL
847 install-local:: $(DESTDIR)$(PROJ_etcdir) $(CONFIG_FILES)
848 $(Echo) Installing Configuration Files To $(DESTDIR)$(PROJ_etcdir)
849 $(Verb)for file in $(CONFIG_FILES); do \
850 if test -f $(PROJ_OBJ_DIR)/$${file} ; then \
851 $(DataInstall) $(PROJ_OBJ_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
852 elif test -f $(PROJ_SRC_DIR)/$${file} ; then \
853 $(DataInstall) $(PROJ_SRC_DIR)/$${file} $(DESTDIR)$(PROJ_etcdir) ; \
855 $(ECHO) Error: cannot find config file $${file}. ; \
860 $(Echo) Uninstalling Configuration Files From $(DESTDIR)$(PROJ_etcdir)
861 $(Verb)for file in $(CONFIG_FILES); do \
862 $(RM) -f $(DESTDIR)$(PROJ_etcdir)/$${file} ; \
868 ###############################################################################
869 # Set up variables for building libraries
870 ###############################################################################
872 #---------------------------------------------------------
873 # Define various command line options pertaining to the
874 # libraries needed when linking. There are "Proj" libs
875 # (defined by the user's project) and "LLVM" libs (defined
876 # by the LLVM project).
877 #---------------------------------------------------------
880 ProjLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(USEDLIBS)))
881 ProjLibsOptions := $(patsubst %.o, $(LibDir)/%.o, $(ProjLibsOptions))
882 ProjUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(USEDLIBS)))
883 ProjLibsPaths := $(addprefix $(LibDir)/,$(ProjUsedLibs))
887 LLVMLibsOptions := $(patsubst %.a.o, -l%, $(addsuffix .o, $(LLVMLIBS)))
888 LLVMLibsOptions := $(patsubst %.o, $(LLVMLibDir)/%.o, $(LLVMLibsOptions))
889 LLVMUsedLibs := $(patsubst %.a.o, lib%.a, $(addsuffix .o, $(LLVMLIBS)))
890 LLVMLibsPaths := $(addprefix $(LLVMLibDir)/,$(LLVMUsedLibs))
893 # Win32.DLL may refer to other components.
894 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
895 ifdef LOADABLE_MODULE
896 LINK_COMPONENTS := all
900 ifndef IS_CLEANING_TARGET
901 ifdef LINK_COMPONENTS
903 # If LLVM_CONFIG doesn't exist, build it. This can happen if you do a make
904 # clean in tools, then do a make in tools (instead of at the top level).
906 @echo "*** llvm-config doesn't exist - rebuilding it."
907 @$(MAKE) -C $(PROJ_OBJ_ROOT)/tools/llvm-config
909 $(ToolDir)/$(strip $(TOOLNAME))$(EXEEXT): $(LLVM_CONFIG)
911 ifeq ($(ENABLE_SHARED), 1)
912 # We can take the "auto-import" feature to get rid of using dllimport.
913 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
914 LLVMLibsOptions += -Wl,--enable-auto-import,--enable-runtime-pseudo-reloc \
917 LLVMLibsOptions += -lLLVM-$(LLVMVersion)
918 LLVMLibsPaths += $(SharedLibDir)/$(SharedPrefix)LLVM-$(LLVMVersion)$(SHLIBEXT)
920 LLVMLibsOptions += $(shell $(LLVM_CONFIG) --libs $(LINK_COMPONENTS))
921 LLVMLibsPaths += $(LLVM_CONFIG) \
922 $(shell $(LLVM_CONFIG) --libfiles $(LINK_COMPONENTS))
927 # Set up the library exports file.
928 ifdef EXPORTED_SYMBOL_FILE
930 # First, set up the native export file, which may differ from the source
933 ifeq ($(HOST_OS),Darwin)
934 # Darwin convention prefixes symbols with underscores.
935 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).sed
936 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
937 $(Verb) sed -e 's/^/_/' < $< > $@
939 -$(Verb) $(RM) -f $(NativeExportsFile)
941 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
942 # Gold and BFD ld require a version script rather than a plain list.
943 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE)).map
944 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
945 $(Verb) echo "{" > $@
946 $(Verb) grep -q "\<" $< && echo " global:" >> $@ || :
947 $(Verb) sed -e 's/$$/;/' -e 's/^/ /' < $< >> $@
948 $(Verb) echo " local: *;" >> $@
949 $(Verb) echo "};" >> $@
951 -$(Verb) $(RM) -f $(NativeExportsFile)
953 NativeExportsFile := $(EXPORTED_SYMBOL_FILE)
957 # Now add the linker command-line options to use the native export file.
959 ifeq ($(HOST_OS),Darwin)
960 LLVMLibsOptions += -Wl,-exported_symbols_list,$(NativeExportsFile)
963 # GNU ld Win32 accepts .DEF files that contain "DATA" entries.
964 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
965 NativeExportsFile := $(ObjDir)/$(notdir $(EXPORTED_SYMBOL_FILE:.exports=.def))
967 # LLVMLibsOptions is invalidated at processing tools/llvm-shlib.
968 SharedLinkOptions += $(NativeExportsFile)
970 $(NativeExportsFile): $(EXPORTED_SYMBOL_FILE) $(ObjDir)/.dir
971 $(Echo) Generating $(notdir $@)
972 $(Verb) $(ECHO) "EXPORTS" > $@
973 $(Verb) $(CAT) $< >> $@
975 -$(Verb) $(RM) -f $(NativeExportsFile)
979 ifeq ($(HAVE_LINK_VERSION_SCRIPT),1)
980 LLVMLibsOptions += -Wl,--version-script,$(NativeExportsFile)
987 ###############################################################################
988 # Library Build Rules: Four ways to build a library
989 ###############################################################################
991 #---------------------------------------------------------
992 # Bytecode Module Targets:
993 # If the user set MODULE_NAME then they want to build a
994 # bytecode module from the sources. We compile all the
995 # sources and link it together into a single bytecode
997 #---------------------------------------------------------
1000 ifeq ($(strip $(LLVMCC)),)
1001 $(warning Modules require LLVM capable compiler but none is available ****)
1004 Module := $(LibDir)/$(MODULE_NAME).bc
1005 LinkModule := $(LLVMLD) -r
1008 ifdef EXPORTED_SYMBOL_FILE
1009 LinkModule += -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1012 $(Module): $(BUILT_SOURCES) $(ObjectsBC) $(LibDir)/.dir $(LLVMLD)
1013 $(Echo) Building $(BuildMode) Bytecode Module $(notdir $@)
1014 $(Verb) $(LinkModule) -o $@ $(ObjectsBC)
1016 all-local:: $(Module)
1019 ifneq ($(strip $(Module)),)
1020 -$(Verb) $(RM) -f $(Module)
1023 ifdef BYTECODE_DESTINATION
1024 ModuleDestDir := $(BYTECODE_DESTINATION)
1026 ModuleDestDir := $(DESTDIR)$(PROJ_libdir)
1031 $(Echo) Install circumvented with NO_INSTALL
1033 $(Echo) Uninstall circumvented with NO_INSTALL
1035 DestModule := $(ModuleDestDir)/$(MODULE_NAME).bc
1037 install-module:: $(DestModule)
1038 install-local:: $(DestModule)
1040 $(DestModule): $(ModuleDestDir) $(Module)
1041 $(Echo) Installing $(BuildMode) Bytecode Module $(DestModule)
1042 $(Verb) $(DataInstall) $(Module) $(DestModule)
1045 $(Echo) Uninstalling $(BuildMode) Bytecode Module $(DestModule)
1046 -$(Verb) $(RM) -f $(DestModule)
1052 # if we're building a library ...
1055 # Make sure there isn't any extraneous whitespace on the LIBRARYNAME option
1056 LIBRARYNAME := $(strip $(LIBRARYNAME))
1057 ifdef LOADABLE_MODULE
1058 LibName.A := $(LibDir)/$(LIBRARYNAME).a
1059 LibName.SO := $(SharedLibDir)/$(LIBRARYNAME)$(SHLIBEXT)
1061 LibName.A := $(LibDir)/lib$(LIBRARYNAME).a
1062 LibName.SO := $(SharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1064 LibName.O := $(LibDir)/$(LIBRARYNAME).o
1065 LibName.BCA:= $(LibDir)/lib$(LIBRARYNAME).bca
1067 #---------------------------------------------------------
1068 # Shared Library Targets:
1069 # If the user asked for a shared library to be built
1070 # with the SHARED_LIBRARY variable, then we provide
1071 # targets for building them.
1072 #---------------------------------------------------------
1073 ifdef SHARED_LIBRARY
1075 all-local:: $(LibName.SO)
1077 ifdef EXPORTED_SYMBOL_FILE
1078 $(LibName.SO): $(NativeExportsFile)
1081 ifdef LINK_LIBS_IN_SHARED
1082 ifdef LOADABLE_MODULE
1083 SharedLibKindMessage := "Loadable Module"
1085 SharedLibKindMessage := "Shared Library"
1087 $(LibName.SO): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths) $(SharedLibDir)/.dir
1088 $(Echo) Linking $(BuildMode) $(SharedLibKindMessage) \
1090 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO) \
1091 $(ProjLibsOptions) $(LLVMLibsOptions) $(LIBS)
1093 $(LibName.SO): $(ObjectsO) $(SharedLibDir)/.dir
1094 $(Echo) Linking $(BuildMode) Shared Library $(notdir $@)
1095 $(Verb) $(Link) $(SharedLinkOptions) -o $@ $(ObjectsO)
1099 ifneq ($(strip $(LibName.SO)),)
1100 -$(Verb) $(RM) -f $(LibName.SO)
1105 $(Echo) Install circumvented with NO_INSTALL
1107 $(Echo) Uninstall circumvented with NO_INSTALL
1110 # Win32.DLL prefers to be located on the "PATH" of binaries.
1111 ifeq ($(HOST_OS), $(filter $(HOST_OS), Cygwin MingW))
1112 DestSharedLibDir := $(DESTDIR)$(PROJ_bindir)
1114 DestSharedLibDir := $(DESTDIR)$(PROJ_libdir)
1116 DestSharedLib := $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME)$(SHLIBEXT)
1118 install-local:: $(DestSharedLib)
1120 $(DestSharedLib): $(LibName.SO) $(DestSharedLibDir)
1121 $(Echo) Installing $(BuildMode) Shared Library $(DestSharedLib)
1122 $(Verb) $(INSTALL) $(LibName.SO) $(DestSharedLib)
1125 $(Echo) Uninstalling $(BuildMode) Shared Library $(DestSharedLib)
1126 -$(Verb) $(RM) -f $(DestSharedLibDir)/$(SharedPrefix)$(LIBRARYNAME).*
1130 #---------------------------------------------------------
1131 # Bytecode Library Targets:
1132 # If the user asked for a bytecode library to be built
1133 # with the BYTECODE_LIBRARY variable, then we provide
1134 # targets for building them.
1135 #---------------------------------------------------------
1136 ifdef BYTECODE_LIBRARY
1137 ifeq ($(strip $(LLVMCC)),)
1138 $(warning Bytecode libraries require LLVM capable compiler but none is available ****)
1141 all-local:: $(LibName.BCA)
1143 ifdef EXPORTED_SYMBOL_FILE
1144 BCLinkLib = $(LLVMLD) -internalize-public-api-file=$(EXPORTED_SYMBOL_FILE)
1146 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir $(LLVMLD) \
1147 $(LLVMToolDir)/llvm-ar
1148 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@) \
1150 $(Verb) $(BCLinkLib) -o $(ObjDir)/$(LIBRARYNAME).internalize $(ObjectsBC)
1152 $(Verb) $(LArchive) $@ $(ObjDir)/$(LIBRARYNAME).internalize.bc
1154 $(LibName.BCA): $(ObjectsBC) $(LibDir)/.dir \
1155 $(LLVMToolDir)/llvm-ar
1156 $(Echo) Building $(BuildMode) Bytecode Archive $(notdir $@)
1158 $(Verb) $(LArchive) $@ $(ObjectsBC)
1163 ifneq ($(strip $(LibName.BCA)),)
1164 -$(Verb) $(RM) -f $(LibName.BCA)
1167 ifdef BYTECODE_DESTINATION
1168 BytecodeDestDir := $(BYTECODE_DESTINATION)
1170 BytecodeDestDir := $(DESTDIR)$(PROJ_libdir)
1173 DestBytecodeLib = $(BytecodeDestDir)/lib$(LIBRARYNAME).bca
1175 install-bytecode-local:: $(DestBytecodeLib)
1179 $(Echo) Install circumvented with NO_INSTALL
1181 $(Echo) Uninstall circumvented with NO_INSTALL
1183 install-local:: $(DestBytecodeLib)
1185 $(DestBytecodeLib): $(LibName.BCA) $(BytecodeDestDir)
1186 $(Echo) Installing $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1187 $(Verb) $(DataInstall) $(LibName.BCA) $(DestBytecodeLib)
1190 $(Echo) Uninstalling $(BuildMode) Bytecode Archive $(DestBytecodeLib)
1191 -$(Verb) $(RM) -f $(DestBytecodeLib)
1196 #---------------------------------------------------------
1198 # If neither BUILD_ARCHIVE or LOADABLE_MODULE are specified, default to
1199 # building an archive.
1200 #---------------------------------------------------------
1201 ifndef NO_BUILD_ARCHIVE
1202 ifndef BUILD_ARCHIVE
1203 ifndef LOADABLE_MODULE
1209 #---------------------------------------------------------
1210 # Archive Library Targets:
1211 # If the user wanted a regular archive library built,
1212 # then we provide targets for building them.
1213 #---------------------------------------------------------
1216 all-local:: $(LibName.A)
1218 $(LibName.A): $(ObjectsO) $(LibDir)/.dir
1219 $(Echo) Building $(BuildMode) Archive Library $(notdir $@)
1220 -$(Verb) $(RM) -f $@
1221 $(Verb) $(Archive) $@ $(ObjectsO)
1222 $(Verb) $(Ranlib) $@
1225 ifneq ($(strip $(LibName.A)),)
1226 -$(Verb) $(RM) -f $(LibName.A)
1231 $(Echo) Install circumvented with NO_INSTALL
1233 $(Echo) Uninstall circumvented with NO_INSTALL
1235 ifdef NO_INSTALL_ARCHIVES
1237 $(Echo) Install circumvented with NO_INSTALL
1239 $(Echo) Uninstall circumvented with NO_INSTALL
1241 DestArchiveLib := $(DESTDIR)$(PROJ_libdir)/lib$(LIBRARYNAME).a
1243 install-local:: $(DestArchiveLib)
1245 $(DestArchiveLib): $(LibName.A) $(DESTDIR)$(PROJ_libdir)
1246 $(Echo) Installing $(BuildMode) Archive Library $(DestArchiveLib)
1247 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_libdir)
1248 $(Verb) $(INSTALL) $(LibName.A) $(DestArchiveLib)
1251 $(Echo) Uninstalling $(BuildMode) Archive Library $(DestArchiveLib)
1252 -$(Verb) $(RM) -f $(DestArchiveLib)
1260 ###############################################################################
1261 # Tool Build Rules: Build executable tool based on TOOLNAME option
1262 ###############################################################################
1266 #---------------------------------------------------------
1267 # Set up variables for building a tool.
1268 #---------------------------------------------------------
1269 TOOLEXENAME := $(strip $(TOOLNAME))$(EXEEXT)
1271 ToolBuildPath := $(ExmplDir)/$(TOOLEXENAME)
1273 ToolBuildPath := $(ToolDir)/$(TOOLEXENAME)
1276 # TOOLALIAS is a name to symlink (or copy) the tool to.
1279 ToolAliasBuildPath := $(ExmplDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1281 ToolAliasBuildPath := $(ToolDir)/$(strip $(TOOLALIAS))$(EXEEXT)
1285 #---------------------------------------------------------
1287 #---------------------------------------------------------
1289 # If the tool opts in with TOOL_NO_EXPORTS, optimize startup time of the app by
1290 # not exporting all of the weak symbols from the binary. This reduces dyld
1291 # startup time by 4x on darwin in some cases.
1292 ifdef TOOL_NO_EXPORTS
1293 ifeq ($(HOST_OS),Darwin)
1295 # Tiger tools don't support this.
1296 ifneq ($(DARWIN_MAJVERS),4)
1297 LD.Flags += -Wl,-exported_symbol,_main
1301 ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux NetBSD FreeBSD))
1302 ifneq ($(ARCH), Mips)
1303 LD.Flags += -Wl,--version-script=$(LLVM_SRC_ROOT)/autoconf/ExportMap.map
1308 #---------------------------------------------------------
1309 # Tool Version Info Support
1310 #---------------------------------------------------------
1312 ifeq ($(HOST_OS),Darwin)
1313 ifdef TOOL_INFO_PLIST
1315 LD.Flags += -Wl,-sectcreate,__TEXT,__info_plist,$(ObjDir)/$(TOOL_INFO_PLIST)
1317 $(ToolBuildPath): $(ObjDir)/$(TOOL_INFO_PLIST)
1319 $(ObjDir)/$(TOOL_INFO_PLIST): $(PROJ_SRC_DIR)/$(TOOL_INFO_PLIST).in $(ObjDir)/.dir
1320 $(Echo) "Creating $(TOOLNAME) '$(TOOL_INFO_PLIST)' file..."
1321 $(Verb)sed -e "s#@TOOL_INFO_UTI@#$(TOOL_INFO_UTI)#g" \
1322 -e "s#@TOOL_INFO_NAME@#$(TOOL_INFO_NAME)#g" \
1323 -e "s#@TOOL_INFO_VERSION@#$(TOOL_INFO_VERSION)#g" \
1324 -e "s#@TOOL_INFO_BUILD_VERSION@#$(TOOL_INFO_BUILD_VERSION)#g" \
1330 #---------------------------------------------------------
1331 # Provide targets for building the tools
1332 #---------------------------------------------------------
1333 all-local:: $(ToolBuildPath) $(ToolAliasBuildPath)
1336 ifneq ($(strip $(ToolBuildPath)),)
1337 -$(Verb) $(RM) -f $(ToolBuildPath)
1339 ifneq ($(strip $(ToolAliasBuildPath)),)
1340 -$(Verb) $(RM) -f $(ToolAliasBuildPath)
1344 $(ToolBuildPath): $(ExmplDir)/.dir
1346 $(ToolBuildPath): $(ToolDir)/.dir
1349 $(ToolBuildPath): $(ObjectsO) $(ProjLibsPaths) $(LLVMLibsPaths)
1350 $(Echo) Linking $(BuildMode) executable $(TOOLNAME) $(StripWarnMsg)
1351 $(Verb) $(Link) -o $@ $(TOOLLINKOPTS) $(ObjectsO) $(ProjLibsOptions) \
1352 $(LLVMLibsOptions) $(ExtraLibs) $(TOOLLINKOPTSB) $(LIBS)
1353 $(Echo) ======= Finished Linking $(BuildMode) Executable $(TOOLNAME) \
1356 ifneq ($(strip $(ToolAliasBuildPath)),)
1357 $(ToolAliasBuildPath): $(ToolBuildPath)
1358 $(Echo) Creating $(BuildMode) Alias $(TOOLALIAS) $(StripWarnMsg)
1359 $(Verb) $(RM) -f $(ToolAliasBuildPath)
1360 $(Verb) $(AliasTool) $(TOOLEXENAME) $(ToolAliasBuildPath)
1361 $(Echo) ======= Finished Creating $(BuildMode) Alias $(TOOLALIAS) \
1367 $(Echo) Install circumvented with NO_INSTALL
1369 $(Echo) Uninstall circumvented with NO_INSTALL
1371 DestTool = $(DESTDIR)$(PROJ_bindir)/$(TOOLEXENAME)
1373 install-local:: $(DestTool)
1375 $(DestTool): $(ToolBuildPath) $(DESTDIR)$(PROJ_bindir)
1376 $(Echo) Installing $(BuildMode) $(DestTool)
1377 $(Verb) $(ProgInstall) $(ToolBuildPath) $(DestTool)
1380 $(Echo) Uninstalling $(BuildMode) $(DestTool)
1381 -$(Verb) $(RM) -f $(DestTool)
1383 # TOOLALIAS install.
1385 DestToolAlias = $(DESTDIR)$(PROJ_bindir)/$(TOOLALIAS)$(EXEEXT)
1387 install-local:: $(DestToolAlias)
1389 $(DestToolAlias): $(DestTool)
1390 $(Echo) Installing $(BuildMode) $(DestToolAlias)
1391 $(Verb) $(RM) -f $(DestToolAlias)
1392 $(Verb) $(AliasTool) $(TOOLEXENAME) $(DestToolAlias)
1395 $(Echo) Uninstalling $(BuildMode) $(DestToolAlias)
1396 -$(Verb) $(RM) -f $(DestToolAlias)
1402 ###############################################################################
1403 # Object Build Rules: Build object files based on sources
1404 ###############################################################################
1406 # FIXME: This should be checking for "if not GCC or ICC", not for "if HP-UX"
1407 ifeq ($(HOST_OS),HP-UX)
1408 DISABLE_AUTO_DEPENDENCIES=1
1411 # Provide rule sets for when dependency generation is enabled
1412 ifndef DISABLE_AUTO_DEPENDENCIES
1414 #---------------------------------------------------------
1415 # Create .o files in the ObjDir directory from the .cpp and .c files...
1416 #---------------------------------------------------------
1418 DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.d.tmp" \
1419 -MT "$(ObjDir)/$*.o" -MT "$(ObjDir)/$*.d"
1421 # If the build succeeded, move the dependency file over, otherwise
1423 DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.d.tmp" "$(ObjDir)/$*.d"; \
1424 else $(RM) "$(ObjDir)/$*.d.tmp"; exit 1; fi
1426 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1427 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1428 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1431 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1432 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1433 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1436 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1437 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1438 $(Verb) if $(Compile.CXX) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1441 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1442 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1443 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1446 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(PROJ_SRC_DIR)/Makefile
1447 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1448 $(Verb) if $(Compile.C) $(DEPEND_OPTIONS) $< -o $(ObjDir)/$*.o ; \
1451 #---------------------------------------------------------
1452 # Create .bc files in the ObjDir directory from .cpp .cc and .c files...
1453 #---------------------------------------------------------
1455 BC_DEPEND_OPTIONS = -MMD -MP -MF "$(ObjDir)/$*.bc.d.tmp" \
1456 -MT "$(ObjDir)/$*.ll" -MT "$(ObjDir)/$*.bc.d"
1458 # If the build succeeded, move the dependency file over, otherwise
1460 BC_DEPEND_MOVEFILE = then $(MV) -f "$(ObjDir)/$*.bc.d.tmp" "$(ObjDir)/$*.bc.d"; \
1461 else $(RM) "$(ObjDir)/$*.bc.d.tmp"; exit 1; fi
1463 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1464 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1465 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1466 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1467 $(BC_DEPEND_MOVEFILE)
1469 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1470 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1471 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1472 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1473 $(BC_DEPEND_MOVEFILE)
1475 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1476 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1477 $(Verb) if $(BCCompile.CXX) $(BC_DEPEND_OPTIONS) \
1478 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1479 $(BC_DEPEND_MOVEFILE)
1481 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1482 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1483 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1484 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1485 $(BC_DEPEND_MOVEFILE)
1487 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1488 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1489 $(Verb) if $(BCCompile.C) $(BC_DEPEND_OPTIONS) \
1490 $< -o $(ObjDir)/$*.ll -S -emit-llvm ; \
1491 $(BC_DEPEND_MOVEFILE)
1493 # Provide alternate rule sets if dependencies are disabled
1496 $(ObjDir)/%.o: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1497 $(Echo) "Compiling $*.cpp for $(BuildMode) build" $(PIC_FLAG)
1498 $(Compile.CXX) $< -o $@
1500 $(ObjDir)/%.o: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1501 $(Echo) "Compiling $*.mm for $(BuildMode) build" $(PIC_FLAG)
1502 $(Compile.CXX) $< -o $@
1504 $(ObjDir)/%.o: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1505 $(Echo) "Compiling $*.cc for $(BuildMode) build" $(PIC_FLAG)
1506 $(Compile.CXX) $< -o $@
1508 $(ObjDir)/%.o: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1509 $(Echo) "Compiling $*.c for $(BuildMode) build" $(PIC_FLAG)
1510 $(Compile.C) $< -o $@
1512 $(ObjDir)/%.o: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1513 $(Echo) "Compiling $*.m for $(BuildMode) build" $(PIC_FLAG)
1514 $(Compile.C) $< -o $@
1516 $(ObjDir)/%.ll: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1517 $(Echo) "Compiling $*.cpp for $(BuildMode) build (bytecode)"
1518 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1520 $(ObjDir)/%.ll: %.mm $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1521 $(Echo) "Compiling $*.mm for $(BuildMode) build (bytecode)"
1522 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1524 $(ObjDir)/%.ll: %.cc $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCXX)
1525 $(Echo) "Compiling $*.cc for $(BuildMode) build (bytecode)"
1526 $(BCCompile.CXX) $< -o $@ -S -emit-llvm
1528 $(ObjDir)/%.ll: %.c $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1529 $(Echo) "Compiling $*.c for $(BuildMode) build (bytecode)"
1530 $(BCCompile.C) $< -o $@ -S -emit-llvm
1532 $(ObjDir)/%.ll: %.m $(ObjDir)/.dir $(BUILT_SOURCES) $(LLVMCC)
1533 $(Echo) "Compiling $*.m for $(BuildMode) build (bytecode)"
1534 $(BCCompile.C) $< -o $@ -S -emit-llvm
1539 ## Rules for building preprocessed (.i/.ii) outputs.
1540 $(BuildMode)/%.ii: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1541 $(Echo) "Compiling $*.cpp for $(BuildMode) build to .ii file"
1542 $(Verb) $(Preprocess.CXX) $< -o $@
1544 $(BuildMode)/%.ii: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1545 $(Echo) "Compiling $*.mm for $(BuildMode) build to .ii file"
1546 $(Verb) $(Preprocess.CXX) $< -o $@
1548 $(BuildMode)/%.ii: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1549 $(Echo) "Compiling $*.cc for $(BuildMode) build to .ii file"
1550 $(Verb) $(Preprocess.CXX) $< -o $@
1552 $(BuildMode)/%.i: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1553 $(Echo) "Compiling $*.c for $(BuildMode) build to .i file"
1554 $(Verb) $(Preprocess.C) $< -o $@
1556 $(BuildMode)/%.i: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1557 $(Echo) "Compiling $*.m for $(BuildMode) build to .i file"
1558 $(Verb) $(Preprocess.C) $< -o $@
1561 $(ObjDir)/%.s: %.cpp $(ObjDir)/.dir $(BUILT_SOURCES)
1562 $(Echo) "Compiling $*.cpp to asm for $(BuildMode) build" $(PIC_FLAG)
1563 $(Compile.CXX) $< -o $@ -S
1565 $(ObjDir)/%.s: %.mm $(ObjDir)/.dir $(BUILT_SOURCES)
1566 $(Echo) "Compiling $*.mm to asm for $(BuildMode) build" $(PIC_FLAG)
1567 $(Compile.CXX) $< -o $@ -S
1569 $(ObjDir)/%.s: %.cc $(ObjDir)/.dir $(BUILT_SOURCES)
1570 $(Echo) "Compiling $*.cc to asm for $(BuildMode) build" $(PIC_FLAG)
1571 $(Compile.CXX) $< -o $@ -S
1573 $(ObjDir)/%.s: %.c $(ObjDir)/.dir $(BUILT_SOURCES)
1574 $(Echo) "Compiling $*.c to asm for $(BuildMode) build" $(PIC_FLAG)
1575 $(Compile.C) $< -o $@ -S
1577 $(ObjDir)/%.s: %.m $(ObjDir)/.dir $(BUILT_SOURCES)
1578 $(Echo) "Compiling $*.m to asm for $(BuildMode) build" $(PIC_FLAG)
1579 $(Compile.C) $< -o $@ -S
1582 # make the C and C++ compilers strip debug info out of bytecode libraries.
1584 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1585 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1586 $(Verb) $(LOPT) $< -std-compile-opts -o $@
1588 $(ObjectsBC): $(ObjDir)/%.bc: $(ObjDir)/%.ll $(LOPT)
1589 $(Echo) "Compiling $*.ll to $*.bc for $(BuildMode) build (bytecode)"
1590 $(Verb) $(LOPT) $< -std-compile-opts -strip-debug -o $@
1594 #---------------------------------------------------------
1595 # Provide rule to build .bc files from .ll sources,
1596 # regardless of dependencies
1597 #---------------------------------------------------------
1598 $(ObjDir)/%.bc: %.ll $(ObjDir)/.dir $(LLVMAS)
1599 $(Echo) "Compiling $*.ll for $(BuildMode) build"
1600 $(Verb) $(LLVMAS) $< -f -o $@
1602 ###############################################################################
1603 # TABLEGEN: Provide rules for running tblgen to produce *.inc files
1604 ###############################################################################
1607 TABLEGEN_INC_FILES_COMMON = 1
1610 ifdef LLVMC_BASED_DRIVER
1611 TABLEGEN_INC_FILES_COMMON = 1
1614 ifdef TABLEGEN_INC_FILES_COMMON
1616 INCFiles := $(filter %.inc,$(BUILT_SOURCES))
1617 INCTMPFiles := $(INCFiles:%=$(ObjDir)/%.tmp)
1618 .PRECIOUS: $(INCTMPFiles) $(INCFiles)
1620 # INCFiles rule: All of the tblgen generated files are emitted to
1621 # $(ObjDir)/%.inc.tmp, instead of emitting them directly to %.inc. This allows
1622 # us to only "touch" the real file if the contents of it change. IOW, if
1623 # tblgen is modified, all of the .inc.tmp files are regenerated, but no
1624 # dependencies of the .inc files are, unless the contents of the .inc file
1626 $(INCFiles) : %.inc : $(ObjDir)/%.inc.tmp
1627 $(Verb) $(CMP) -s $@ $< || $(CP) $< $@
1629 endif # TABLEGEN_INC_FILES_COMMON
1633 TDFiles := $(strip $(wildcard $(PROJ_SRC_DIR)/*.td) \
1634 $(LLVM_SRC_ROOT)/include/llvm/Target/Target.td \
1635 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetCallingConv.td \
1636 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSchedule.td \
1637 $(LLVM_SRC_ROOT)/include/llvm/Target/TargetSelectionDAG.td \
1638 $(LLVM_SRC_ROOT)/include/llvm/CodeGen/ValueTypes.td) \
1639 $(wildcard $(LLVM_SRC_ROOT)/include/llvm/Intrinsics*.td)
1641 # All of these files depend on tblgen and the .td files.
1642 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1644 $(TARGET:%=$(ObjDir)/%GenRegisterNames.inc.tmp): \
1645 $(ObjDir)/%GenRegisterNames.inc.tmp : %.td $(ObjDir)/.dir
1646 $(Echo) "Building $(<F) register names with tblgen"
1647 $(Verb) $(TableGen) -gen-register-enums -o $(call SYSPATH, $@) $<
1649 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.h.inc.tmp): \
1650 $(ObjDir)/%GenRegisterInfo.h.inc.tmp : %.td $(ObjDir)/.dir
1651 $(Echo) "Building $(<F) register information header with tblgen"
1652 $(Verb) $(TableGen) -gen-register-desc-header -o $(call SYSPATH, $@) $<
1654 $(TARGET:%=$(ObjDir)/%GenRegisterInfo.inc.tmp): \
1655 $(ObjDir)/%GenRegisterInfo.inc.tmp : %.td $(ObjDir)/.dir
1656 $(Echo) "Building $(<F) register info implementation with tblgen"
1657 $(Verb) $(TableGen) -gen-register-desc -o $(call SYSPATH, $@) $<
1659 $(TARGET:%=$(ObjDir)/%GenInstrNames.inc.tmp): \
1660 $(ObjDir)/%GenInstrNames.inc.tmp : %.td $(ObjDir)/.dir
1661 $(Echo) "Building $(<F) instruction names with tblgen"
1662 $(Verb) $(TableGen) -gen-instr-enums -o $(call SYSPATH, $@) $<
1664 $(TARGET:%=$(ObjDir)/%GenInstrInfo.inc.tmp): \
1665 $(ObjDir)/%GenInstrInfo.inc.tmp : %.td $(ObjDir)/.dir
1666 $(Echo) "Building $(<F) instruction information with tblgen"
1667 $(Verb) $(TableGen) -gen-instr-desc -o $(call SYSPATH, $@) $<
1669 $(TARGET:%=$(ObjDir)/%GenAsmWriter.inc.tmp): \
1670 $(ObjDir)/%GenAsmWriter.inc.tmp : %.td $(ObjDir)/.dir
1671 $(Echo) "Building $(<F) assembly writer with tblgen"
1672 $(Verb) $(TableGen) -gen-asm-writer -o $(call SYSPATH, $@) $<
1674 $(TARGET:%=$(ObjDir)/%GenAsmWriter1.inc.tmp): \
1675 $(ObjDir)/%GenAsmWriter1.inc.tmp : %.td $(ObjDir)/.dir
1676 $(Echo) "Building $(<F) assembly writer #1 with tblgen"
1677 $(Verb) $(TableGen) -gen-asm-writer -asmwriternum=1 -o $(call SYSPATH, $@) $<
1679 $(TARGET:%=$(ObjDir)/%GenAsmMatcher.inc.tmp): \
1680 $(ObjDir)/%GenAsmMatcher.inc.tmp : %.td $(ObjDir)/.dir
1681 $(Echo) "Building $(<F) assembly matcher with tblgen"
1682 $(Verb) $(TableGen) -gen-asm-matcher -o $(call SYSPATH, $@) $<
1684 $(TARGET:%=$(ObjDir)/%GenCodeEmitter.inc.tmp): \
1685 $(ObjDir)/%GenCodeEmitter.inc.tmp: %.td $(ObjDir)/.dir
1686 $(Echo) "Building $(<F) code emitter with tblgen"
1687 $(Verb) $(TableGen) -gen-emitter -o $(call SYSPATH, $@) $<
1689 $(TARGET:%=$(ObjDir)/%GenDAGISel.inc.tmp): \
1690 $(ObjDir)/%GenDAGISel.inc.tmp : %.td $(ObjDir)/.dir
1691 $(Echo) "Building $(<F) DAG instruction selector implementation with tblgen"
1692 $(Verb) $(TableGen) -gen-dag-isel -o $(call SYSPATH, $@) $<
1694 $(TARGET:%=$(ObjDir)/%GenDisassemblerTables.inc.tmp): \
1695 $(ObjDir)/%GenDisassemblerTables.inc.tmp : %.td $(ObjDir)/.dir
1696 $(Echo) "Building $(<F) disassembly tables with tblgen"
1697 $(Verb) $(TableGen) -gen-disassembler -o $(call SYSPATH, $@) $<
1699 $(TARGET:%=$(ObjDir)/%GenEDInfo.inc.tmp): \
1700 $(ObjDir)/%GenEDInfo.inc.tmp : %.td $(ObjDir)/.dir
1701 $(Echo) "Building $(<F) enhanced disassembly information with tblgen"
1702 $(Verb) $(TableGen) -gen-enhanced-disassembly-info -o $(call SYSPATH, $@) $<
1704 $(TARGET:%=$(ObjDir)/%GenFastISel.inc.tmp): \
1705 $(ObjDir)/%GenFastISel.inc.tmp : %.td $(ObjDir)/.dir
1706 $(Echo) "Building $(<F) \"fast\" instruction selector implementation with tblgen"
1707 $(Verb) $(TableGen) -gen-fast-isel -o $(call SYSPATH, $@) $<
1709 $(TARGET:%=$(ObjDir)/%GenSubtarget.inc.tmp): \
1710 $(ObjDir)/%GenSubtarget.inc.tmp : %.td $(ObjDir)/.dir
1711 $(Echo) "Building $(<F) subtarget information with tblgen"
1712 $(Verb) $(TableGen) -gen-subtarget -o $(call SYSPATH, $@) $<
1714 $(TARGET:%=$(ObjDir)/%GenCallingConv.inc.tmp): \
1715 $(ObjDir)/%GenCallingConv.inc.tmp : %.td $(ObjDir)/.dir
1716 $(Echo) "Building $(<F) calling convention information with tblgen"
1717 $(Verb) $(TableGen) -gen-callingconv -o $(call SYSPATH, $@) $<
1719 $(TARGET:%=$(ObjDir)/%GenIntrinsics.inc.tmp): \
1720 $(ObjDir)/%GenIntrinsics.inc.tmp : %.td $(ObjDir)/.dir
1721 $(Echo) "Building $(<F) intrinsics information with tblgen"
1722 $(Verb) $(TableGen) -gen-tgt-intrinsic -o $(call SYSPATH, $@) $<
1724 $(ObjDir)/ARMGenDecoderTables.inc.tmp : ARM.td $(ObjDir)/.dir
1725 $(Echo) "Building $(<F) decoder tables with tblgen"
1726 $(Verb) $(TableGen) -gen-arm-decoder -o $(call SYSPATH, $@) $<
1730 -$(Verb) $(RM) -f $(INCFiles)
1734 ifdef LLVMC_BASED_DRIVER
1736 TDSrc := $(sort $(strip $(wildcard $(PROJ_SRC_DIR)/*.td)) \
1737 $(strip $(wildcard $(PROJ_OBJ_DIR)/*.td)))
1739 TDCommon := $(strip $(wildcard \
1740 $(LLVM_SRC_ROOT)/include/llvm/CompilerDriver/*.td))
1742 TDFiles := $(TDSrc) $(TDCommon)
1744 $(INCTMPFiles) : $(TBLGEN) $(TDFiles)
1746 $(ObjDir)/%.inc.tmp: %.td $(ObjDir)/.dir
1747 $(Echo) "Building LLVMC compilation graph description with tblgen"
1748 $(Verb) $(TableGen) -gen-llvmc -o $(call SYSPATH, $@) $<
1751 -$(Verb) $(RM) -f $(INCFiles)
1753 endif # LLVMC_BASED_DRIVER
1755 ###############################################################################
1756 # OTHER RULES: Other rules needed
1757 ###############################################################################
1759 # To create postscript files from dot files...
1760 ifneq ($(DOT),false)
1762 $(DOT) -Tps < $< > $@
1765 $(Echo) "Cannot build $@: The program dot is not installed"
1768 # This rules ensures that header files that are removed still have a rule for
1769 # which they can be "generated." This allows make to ignore them and
1770 # reproduce the dependency lists.
1774 # Define clean-local to clean the current directory. Note that this uses a
1775 # very conservative approach ensuring that empty variables do not cause
1776 # errors or disastrous removal.
1778 ifneq ($(strip $(ObjRootDir)),)
1779 -$(Verb) $(RM) -rf $(ObjRootDir)
1781 -$(Verb) $(RM) -f core core.[0-9][0-9]* *.o *.d *~ *.flc
1782 ifneq ($(strip $(SHLIBEXT)),) # Extra paranoia - make real sure SHLIBEXT is set
1783 -$(Verb) $(RM) -f *$(SHLIBEXT)
1787 -$(Verb) $(RM) -rf Debug Release Profile
1790 ###############################################################################
1791 # DEPENDENCIES: Include the dependency files if we should
1792 ###############################################################################
1793 ifndef DISABLE_AUTO_DEPENDENCIES
1795 # If its not one of the cleaning targets
1796 ifndef IS_CLEANING_TARGET
1798 # Get the list of dependency files
1799 DependSourceFiles := $(basename $(filter %.cpp %.c %.cc %.m %.mm, $(Sources)))
1800 DependFiles := $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.d)
1802 # Include bitcode dependency files if using bitcode libraries
1803 ifdef BYTECODE_LIBRARY
1804 DependFiles += $(DependSourceFiles:%=$(PROJ_OBJ_DIR)/$(BuildMode)/%.bc.d)
1807 -include $(DependFiles) ""
1813 ###############################################################################
1814 # CHECK: Running the test suite
1815 ###############################################################################
1818 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1819 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1820 $(EchoCmd) Running test suite ; \
1821 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local \
1822 TESTSUITE=$(TESTSUITE) ; \
1824 $(EchoCmd) No Makefile in test directory ; \
1827 $(EchoCmd) No test directory ; \
1833 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1834 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1835 $(EchoCmd) Running test suite ; \
1836 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-dg ; \
1838 $(EchoCmd) No Makefile in test directory ; \
1841 $(EchoCmd) No test directory ; \
1845 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/test" ; then \
1846 if test -f "$(PROJ_OBJ_ROOT)/test/Makefile" ; then \
1847 $(EchoCmd) Running test suite ; \
1848 $(MAKE) -C $(PROJ_OBJ_ROOT)/test check-local-all ; \
1850 $(EchoCmd) No Makefile in test directory ; \
1853 $(EchoCmd) No test directory ; \
1856 ###############################################################################
1857 # UNITTESTS: Running the unittests test suite
1858 ###############################################################################
1861 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/unittests" ; then \
1862 if test -f "$(PROJ_OBJ_ROOT)/unittests/Makefile" ; then \
1863 $(EchoCmd) Running unittests test suite ; \
1864 $(MAKE) -C $(PROJ_OBJ_ROOT)/unittests unitcheck; \
1866 $(EchoCmd) No Makefile in unittests directory ; \
1869 $(EchoCmd) No unittests directory ; \
1872 ###############################################################################
1873 # DISTRIBUTION: Handle construction of a distribution tarball
1874 ###############################################################################
1876 #------------------------------------------------------------------------
1877 # Define distribution related variables
1878 #------------------------------------------------------------------------
1879 DistName := $(PROJECT_NAME)-$(PROJ_VERSION)
1880 DistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1881 TopDistDir := $(PROJ_OBJ_ROOT)/$(DistName)
1882 DistTarGZip := $(PROJ_OBJ_ROOT)/$(DistName).tar.gz
1883 DistZip := $(PROJ_OBJ_ROOT)/$(DistName).zip
1884 DistTarBZ2 := $(PROJ_OBJ_ROOT)/$(DistName).tar.bz2
1885 DistAlways := CREDITS.TXT LICENSE.TXT README.txt README AUTHORS COPYING \
1886 ChangeLog INSTALL NEWS Makefile Makefile.common Makefile.rules \
1887 Makefile.config.in configure autoconf
1888 DistOther := $(notdir $(wildcard \
1889 $(PROJ_SRC_DIR)/*.h \
1890 $(PROJ_SRC_DIR)/*.td \
1891 $(PROJ_SRC_DIR)/*.def \
1892 $(PROJ_SRC_DIR)/*.ll \
1893 $(PROJ_SRC_DIR)/*.in))
1894 DistSubDirs := $(SubDirs)
1895 DistSources = $(Sources) $(EXTRA_DIST)
1896 DistFiles = $(DistAlways) $(DistSources) $(DistOther)
1898 #------------------------------------------------------------------------
1899 # We MUST build distribution with OBJ_DIR != SRC_DIR
1900 #------------------------------------------------------------------------
1901 ifeq ($(PROJ_SRC_DIR),$(PROJ_OBJ_DIR))
1902 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1903 $(Echo) ERROR: Target $@ only available with OBJ_DIR != SRC_DIR
1907 #------------------------------------------------------------------------
1908 # Prevent attempt to run dist targets from anywhere but the top level
1909 #------------------------------------------------------------------------
1911 dist dist-check dist-clean dist-gzip dist-bzip2 dist-zip ::
1912 $(Echo) ERROR: You must run $@ from $(PROJ_OBJ_ROOT)
1915 #------------------------------------------------------------------------
1916 # Provide the top level targets
1917 #------------------------------------------------------------------------
1919 dist-gzip:: $(DistTarGZip)
1921 $(DistTarGZip) : $(TopDistDir)/.makedistdir
1922 $(Echo) Packing gzipped distribution tar file.
1923 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - "$(DistName)" | \
1924 $(GZIP) -c > "$(DistTarGZip)"
1926 dist-bzip2:: $(DistTarBZ2)
1928 $(DistTarBZ2) : $(TopDistDir)/.makedistdir
1929 $(Echo) Packing bzipped distribution tar file.
1930 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(TAR) chf - $(DistName) | \
1931 $(BZIP2) -c >$(DistTarBZ2)
1933 dist-zip:: $(DistZip)
1935 $(DistZip) : $(TopDistDir)/.makedistdir
1936 $(Echo) Packing zipped distribution file.
1937 $(Verb) rm -f $(DistZip)
1938 $(Verb) cd $(PROJ_OBJ_ROOT) ; $(ZIP) -rq $(DistZip) $(DistName)
1940 dist :: $(DistTarGZip) $(DistTarBZ2) $(DistZip)
1941 $(Echo) ===== DISTRIBUTION PACKAGING SUCESSFUL =====
1943 DistCheckDir := $(PROJ_OBJ_ROOT)/_distcheckdir
1945 dist-check:: $(DistTarGZip)
1946 $(Echo) Checking distribution tar file.
1947 $(Verb) if test -d $(DistCheckDir) ; then \
1948 $(RM) -rf $(DistCheckDir) ; \
1950 $(Verb) $(MKDIR) $(DistCheckDir)
1951 $(Verb) cd $(DistCheckDir) && \
1952 $(MKDIR) $(DistCheckDir)/build && \
1953 $(MKDIR) $(DistCheckDir)/install && \
1954 gunzip -c $(DistTarGZip) | $(TAR) xf - && \
1956 ../$(DistName)/configure --prefix="$(DistCheckDir)/install" \
1957 --srcdir=../$(DistName) $(DIST_CHECK_CONFIG_OPTIONS) && \
1960 $(MAKE) unittests && \
1961 $(MAKE) install && \
1962 $(MAKE) uninstall && \
1963 $(MAKE) dist-clean && \
1964 $(EchoCmd) ===== $(DistTarGZip) Ready For Distribution =====
1967 $(Echo) Cleaning distribution files
1968 -$(Verb) $(RM) -rf $(DistTarGZip) $(DistTarBZ2) $(DistZip) $(DistName) \
1973 #------------------------------------------------------------------------
1974 # Provide the recursive distdir target for building the distribution directory
1975 #------------------------------------------------------------------------
1976 distdir: $(DistDir)/.makedistdir
1977 $(DistDir)/.makedistdir: $(DistSources)
1978 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
1979 if test -d "$(DistDir)" ; then \
1980 find $(DistDir) -type d ! -perm -200 -exec chmod u+w {} ';' || \
1983 $(EchoCmd) Removing old $(DistDir) ; \
1984 $(RM) -rf $(DistDir); \
1985 $(EchoCmd) Making 'all' to verify build ; \
1986 $(MAKE) ENABLE_OPTIMIZED=1 all ; \
1988 $(Echo) Building Distribution Directory $(DistDir)
1989 $(Verb) $(MKDIR) $(DistDir)
1990 $(Verb) srcdirstrip=`echo "$(PROJ_SRC_DIR)" | sed 's|.|.|g'`; \
1991 srcrootstrip=`echo "$(PROJ_SRC_ROOT)" | sed 's|.|.|g'`; \
1992 for file in $(DistFiles) ; do \
1994 $(PROJ_SRC_DIR)/*) \
1995 file=`echo "$$file" | sed "s#^$$srcdirstrip/##"` \
1997 $(PROJ_SRC_ROOT)/*) \
1998 file=`echo "$$file" | \
1999 sed "s#^$$srcrootstrip/##"` \
2002 if test -f "$(PROJ_SRC_DIR)/$$file" || \
2003 test -d "$(PROJ_SRC_DIR)/$$file" ; then \
2004 from_dir="$(PROJ_SRC_DIR)" ; \
2005 elif test -f "$$file" || test -d "$$file" ; then \
2008 to_dir=`echo "$$file" | sed -e 's#/[^/]*$$##'` ; \
2009 if test "$$to_dir" != "$$file" && test "$$to_dir" != "."; then \
2010 to_dir="$(DistDir)/$$dir"; \
2011 $(MKDIR) "$$to_dir" ; \
2013 to_dir="$(DistDir)"; \
2015 mid_dir=`echo "$$file" | sed -n -e 's#^\(.*\)/[^/]*$$#\1#p'`; \
2016 if test -n "$$mid_dir" ; then \
2017 $(MKDIR) "$$to_dir/$$mid_dir" || exit 1; \
2019 if test -d "$$from_dir/$$file"; then \
2020 if test -d "$(PROJ_SRC_DIR)/$$file" && \
2021 test "$$from_dir" != "$(PROJ_SRC_DIR)" ; then \
2022 cd $(PROJ_SRC_DIR) ; \
2023 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2024 ( cd $$to_dir ; $(TAR) xf - ) ; \
2025 cd $(PROJ_OBJ_DIR) ; \
2028 $(TAR) cf - $$file --exclude .svn --exclude CVS | \
2029 ( cd $$to_dir ; $(TAR) xf - ) ; \
2030 cd $(PROJ_OBJ_DIR) ; \
2032 elif test -f "$$from_dir/$$file" ; then \
2033 $(CP) -p "$$from_dir/$$file" "$(DistDir)/$$file" || exit 1; \
2034 elif test -L "$$from_dir/$$file" ; then \
2035 $(CP) -pd "$$from_dir/$$file" $(DistDir)/$$file || exit 1; \
2036 elif echo "$(DistAlways)" | grep -v "$$file" >/dev/null ; then \
2037 $(EchoCmd) "===== WARNING: Distribution Source " \
2038 "$$from_dir/$$file Not Found!" ; \
2039 elif test "$(Verb)" != '@' ; then \
2040 $(EchoCmd) "Skipping non-existent $$from_dir/$$file" ; \
2043 $(Verb) for subdir in $(DistSubDirs) ; do \
2044 if test "$$subdir" \!= "." ; then \
2045 new_distdir="$(DistDir)/$$subdir" ; \
2046 test -d "$$new_distdir" || $(MKDIR) "$$new_distdir" || exit 1; \
2047 ( cd $$subdir && $(MAKE) ENABLE_OPTIMIZED=1 \
2048 DistDir="$$new_distdir" distdir ) || exit 1; \
2051 $(Verb) if test "$(DistDir)" = "$(TopDistDir)" ; then \
2052 $(EchoCmd) Eliminating CVS/.svn directories from distribution ; \
2053 $(RM) -rf `find $(TopDistDir) -type d \( -name CVS -o \
2054 -name .svn \) -print` ;\
2055 $(MAKE) dist-hook ; \
2056 $(FIND) $(TopDistDir) -type d ! -perm -777 -exec chmod a+rwx {} \; \
2057 -o ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; \
2058 -o ! -type d ! -perm -400 -exec chmod a+r {} \; \
2059 -o ! -type d ! -perm -444 -exec \
2060 $(SHELL) $(INSTALL_SH) -c -m a+r {} {} \; \
2061 || chmod -R a+r $(DistDir) ; \
2064 # This is invoked by distdir target, define it as a no-op to avoid errors if not
2070 ###############################################################################
2071 # TOP LEVEL - targets only to apply at the top level directory
2072 ###############################################################################
2076 #------------------------------------------------------------------------
2077 # Install support for the project's include files:
2078 #------------------------------------------------------------------------
2081 $(Echo) Install circumvented with NO_INSTALL
2083 $(Echo) Uninstall circumvented with NO_INSTALL
2086 $(Echo) Installing include files
2087 $(Verb) $(MKDIR) $(DESTDIR)$(PROJ_includedir)
2088 $(Verb) if test -d "$(PROJ_SRC_ROOT)/include" ; then \
2089 cd $(PROJ_SRC_ROOT)/include && \
2090 for hdr in `find . -type f '!' '(' -name '*~' \
2091 -o -name '.#*' -o -name '*.in' ')' -print | grep -v CVS | \
2092 grep -v .svn` ; do \
2093 instdir=`dirname "$(DESTDIR)$(PROJ_includedir)/$$hdr"` ; \
2094 if test \! -d "$$instdir" ; then \
2095 $(EchoCmd) Making install directory $$instdir ; \
2096 $(MKDIR) $$instdir ;\
2098 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2101 ifneq ($(PROJ_SRC_ROOT),$(PROJ_OBJ_ROOT))
2102 $(Verb) if test -d "$(PROJ_OBJ_ROOT)/include" ; then \
2103 cd $(PROJ_OBJ_ROOT)/include && \
2104 for hdr in `find . -type f -print | grep -v CVS` ; do \
2105 $(DataInstall) $$hdr $(DESTDIR)$(PROJ_includedir)/$$hdr ; \
2111 $(Echo) Uninstalling include files
2112 $(Verb) if [ -d "$(PROJ_SRC_ROOT)/include" ] ; then \
2113 cd $(PROJ_SRC_ROOT)/include && \
2114 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f \
2115 '!' '(' -name '*~' -o -name '.#*' \
2116 -o -name '*.in' ')' -print ')' | \
2117 grep -v CVS | sed 's#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2118 cd $(PROJ_SRC_ROOT)/include && \
2119 $(RM) -f `find . -path '*/Internal' -prune -o '(' -type f -name '*.in' \
2120 -print ')' | sed 's#\.in$$##;s#^#$(DESTDIR)$(PROJ_includedir)/#'` ; \
2126 @echo searching for overlength lines in files: $(Sources)
2129 egrep -n '.{81}' $(Sources) /dev/null
2132 @echo searching for tabs in files: $(Sources)
2135 egrep -n ' ' $(Sources) /dev/null
2138 @ls -l $(LibDir) | awk '\
2139 BEGIN { sum = 0; } \
2141 END { printf("Libraries: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2142 @ls -l $(ToolDir) | awk '\
2143 BEGIN { sum = 0; } \
2145 END { printf("Programs: %6.3f MBytes\n", sum/(1024.0*1024.0)); }'
2146 #------------------------------------------------------------------------
2147 # Print out the directories used for building
2148 #------------------------------------------------------------------------
2150 $(Echo) "BuildMode : " '$(BuildMode)'
2151 $(Echo) "PROJ_SRC_ROOT: " '$(PROJ_SRC_ROOT)'
2152 $(Echo) "PROJ_SRC_DIR : " '$(PROJ_SRC_DIR)'
2153 $(Echo) "PROJ_OBJ_ROOT: " '$(PROJ_OBJ_ROOT)'
2154 $(Echo) "PROJ_OBJ_DIR : " '$(PROJ_OBJ_DIR)'
2155 $(Echo) "LLVM_SRC_ROOT: " '$(LLVM_SRC_ROOT)'
2156 $(Echo) "LLVM_OBJ_ROOT: " '$(LLVM_OBJ_ROOT)'
2157 $(Echo) "PROJ_prefix : " '$(PROJ_prefix)'
2158 $(Echo) "PROJ_bindir : " '$(PROJ_bindir)'
2159 $(Echo) "PROJ_libdir : " '$(PROJ_libdir)'
2160 $(Echo) "PROJ_etcdir : " '$(PROJ_etcdir)'
2161 $(Echo) "PROJ_includedir : " '$(PROJ_includedir)'
2162 $(Echo) "UserTargets : " '$(UserTargets)'
2163 $(Echo) "ObjMakefiles : " '$(ObjMakefiles)'
2164 $(Echo) "SrcMakefiles : " '$(SrcMakefiles)'
2165 $(Echo) "ObjDir : " '$(ObjDir)'
2166 $(Echo) "LibDir : " '$(LibDir)'
2167 $(Echo) "ToolDir : " '$(ToolDir)'
2168 $(Echo) "ExmplDir : " '$(ExmplDir)'
2169 $(Echo) "Sources : " '$(Sources)'
2170 $(Echo) "TDFiles : " '$(TDFiles)'
2171 $(Echo) "INCFiles : " '$(INCFiles)'
2172 $(Echo) "INCTMPFiles : " '$(INCTMPFiles)'
2173 $(Echo) "PreConditions: " '$(PreConditions)'
2174 $(Echo) "Compile.CXX : " '$(Compile.CXX)'
2175 $(Echo) "Compile.C : " '$(Compile.C)'
2176 $(Echo) "Archive : " '$(Archive)'
2177 $(Echo) "YaccFiles : " '$(YaccFiles)'
2178 $(Echo) "LexFiles : " '$(LexFiles)'
2179 $(Echo) "Module : " '$(Module)'
2180 $(Echo) "FilesToConfig: " '$(FilesToConfigPATH)'
2181 $(Echo) "SubDirs : " '$(SubDirs)'
2182 $(Echo) "ProjLibsPaths: " '$(ProjLibsPaths)'
2183 $(Echo) "ProjLibsOptions: " '$(ProjLibsOptions)'
2188 # General debugging rule, use 'make dbg-print-XXX' to print the
2189 # definition, value and origin of XXX.
2191 $(error PRINT: $(value $*) = "$($*)" (from $(origin $*)))