]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - Makefile
Clear UNIVERSAL_SDK_PATH setting when building host tools. <rdar://12360497>
[opencl/llvm.git] / Makefile
1 #===- ./Makefile -------------------------------------------*- Makefile -*--===#
2 #
3 #                     The LLVM Compiler Infrastructure
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 #===------------------------------------------------------------------------===#
10 LEVEL := .
12 # Top-Level LLVM Build Stages:
13 #   1. Build lib/Support and lib/TableGen, which are used by utils (tblgen).
14 #   2. Build utils, which is used by VMCore.
15 #   3. Build VMCore, which builds the Intrinsics.inc file used by libs.
16 #   4. Build libs, which are needed by llvm-config.
17 #   5. Build llvm-config, which determines inter-lib dependencies for tools.
18 #   6. Build tools, runtime, docs.
19 #
20 # When cross-compiling, there are some things (tablegen) that need to
21 # be build for the build system first.
23 # If "RC_ProjectName" exists in the environment, and its value is
24 # "llvmCore", then this is an "Apple-style" build; search for
25 # "Apple-style" in the comments for more info.  Anything else is a
26 # normal build.
27 ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore)  # Normal build (not "Apple-style").
29 ifeq ($(BUILD_DIRS_ONLY),1)
30   DIRS := lib/Support lib/TableGen utils tools/llvm-config
31   OPTIONAL_DIRS := tools/clang/utils/TableGen
32 else
33   DIRS := lib/Support lib/TableGen utils lib/VMCore lib tools/llvm-shlib \
34           tools/llvm-config tools runtime docs unittests
35   OPTIONAL_DIRS := projects bindings
36 endif
38 ifeq ($(BUILD_EXAMPLES),1)
39   OPTIONAL_DIRS += examples
40 endif
42 EXTRA_DIST := test unittests llvm.spec include win32 Xcode
44 include $(LEVEL)/Makefile.config
46 ifneq ($(ENABLE_SHARED),1)
47   DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
48 endif
50 ifneq ($(ENABLE_DOCS),1)
51   DIRS := $(filter-out docs, $(DIRS))
52 endif
54 ifeq ($(MAKECMDGOALS),libs-only)
55   DIRS := $(filter-out tools runtime docs, $(DIRS))
56   OPTIONAL_DIRS :=
57 endif
59 ifeq ($(MAKECMDGOALS),install-libs)
60   DIRS := $(filter-out tools runtime docs, $(DIRS))
61   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
62 endif
64 ifeq ($(MAKECMDGOALS),tools-only)
65   DIRS := $(filter-out runtime docs, $(DIRS))
66   OPTIONAL_DIRS :=
67 endif
69 ifeq ($(MAKECMDGOALS),install-clang)
70   DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
71           tools/clang/tools/libclang tools/clang/tools/c-index-test \
72           tools/clang/include/clang-c \
73           tools/clang/runtime tools/clang/docs \
74           tools/lto runtime
75   OPTIONAL_DIRS :=
76   NO_INSTALL = 1
77 endif
79 ifeq ($(MAKECMDGOALS),clang-only)
80   DIRS := $(filter-out tools docs unittests, $(DIRS)) \
81           tools/clang tools/lto
82   OPTIONAL_DIRS :=
83 endif
85 ifeq ($(MAKECMDGOALS),unittests)
86   DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
87   OPTIONAL_DIRS :=
88 endif
90 # Use NO_INSTALL define of the Makefile of each directory for deciding
91 # if the directory is installed or not
92 ifeq ($(MAKECMDGOALS),install)
93   OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
94 endif
96 # Don't build unittests when ONLY_TOOLS is set.
97 ifneq ($(ONLY_TOOLS),)
98   DIRS := $(filter-out unittests, $(DIRS))
99 endif
101 # If we're cross-compiling, build the build-hosted tools first
102 ifeq ($(LLVM_CROSS_COMPILING),1)
103 all:: cross-compile-build-tools
105 clean::
106         $(Verb) rm -rf BuildTools
108 cross-compile-build-tools:
109         $(Verb) if [ ! -f BuildTools/Makefile ]; then \
110           $(MKDIR) BuildTools; \
111           cd BuildTools ; \
112           unset CFLAGS ; \
113           unset CXXFLAGS ; \
114           unset SDKROOT ; \
115           unset UNIVERSAL_SDK_PATH ; \
116           $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
117                 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \
118                 --disable-polly ; \
119           cd .. ; \
120         fi; \
121         ($(MAKE) -C BuildTools \
122           BUILD_DIRS_ONLY=1 \
123           UNIVERSAL= \
124           UNIVERSAL_SDK_PATH= \
125           SDKROOT= \
126           TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \
127           TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \
128           ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
129           ENABLE_PROFILING=$(ENABLE_PROFILING) \
130           ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
131           DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
132           ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
133           ENABLE_LIBCPP=$(ENABLE_LIBCPP) \
134           CFLAGS= \
135           CXXFLAGS= \
136         ) || exit 1;
137 endif
139 # Include the main makefile machinery.
140 include $(LLVM_SRC_ROOT)/Makefile.rules
142 # Specify options to pass to configure script when we're
143 # running the dist-check target
144 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
146 .PHONY: debug-opt-prof
147 debug-opt-prof:
148         $(Echo) Building Debug Version
149         $(Verb) $(MAKE)
150         $(Echo)
151         $(Echo) Building Optimized Version
152         $(Echo)
153         $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
154         $(Echo)
155         $(Echo) Building Profiling Version
156         $(Echo)
157         $(Verb) $(MAKE) ENABLE_PROFILING=1
159 dist-hook::
160         $(Echo) Eliminating files constructed by configure
161         $(Verb) $(RM) -f \
162           $(TopDistDir)/include/llvm/Config/config.h  \
163           $(TopDistDir)/include/llvm/Support/DataTypes.h
165 clang-only: all
166 tools-only: all
167 libs-only: all
168 install-clang: install
169 install-libs: install
171 # If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.
172 ifeq ($(SHOW_DIAGNOSTICS),1)
173 clean-diagnostics:
174         $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags
175 .PHONY: clean-diagnostics
177 all-local:: clean-diagnostics
178 endif
180 #------------------------------------------------------------------------
181 # Make sure the generated files are up-to-date. This must be kept in
182 # sync with the AC_CONFIG_HEADER and AC_CONFIG_FILE invocations in
183 # autoconf/configure.ac.
184 # Note that Makefile.config is covered by its own separate rule
185 # in Makefile.rules where it can be reused by sub-projects.
186 #------------------------------------------------------------------------
187 FilesToConfig := \
188   bindings/ocaml/llvm/META.llvm \
189   docs/doxygen.cfg \
190   llvm.spec \
191   include/llvm/Config/config.h \
192   include/llvm/Config/llvm-config.h \
193   include/llvm/Config/Targets.def \
194   include/llvm/Config/AsmPrinters.def \
195   include/llvm/Config/AsmParsers.def \
196   include/llvm/Config/Disassemblers.def \
197   include/llvm/Support/DataTypes.h
198 FilesToConfigPATH  := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
200 all-local:: $(FilesToConfigPATH)
201 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
202         $(Echo) Regenerating $*
203         $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
204 .PRECIOUS: $(FilesToConfigPATH)
206 # NOTE: This needs to remain as the last target definition in this file so
207 # that it gets executed last.
208 ifneq ($(BUILD_DIRS_ONLY),1)
209 all::
210         $(Echo) '*****' Completed $(BuildMode) Build
211 ifneq ($(ENABLE_OPTIMIZED),1)
212         $(Echo) '*****' Note: Debug build can be 10 times slower than an
213         $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
214         $(Echo) '*****' make an optimized build. Alternatively you can
215         $(Echo) '*****' configure with --enable-optimized.
216 ifeq ($(SHOW_DIAGNOSTICS),1)
217         $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \
218           $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \
219             $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \
220         fi
221 endif
222 endif
223 endif
225 check-llvm2cpp:
226         $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
228 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
229         rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
231 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
232         rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
234 show-footprint:
235         $(Verb) du -sk $(LibDir)
236         $(Verb) du -sk $(ToolDir)
237         $(Verb) du -sk $(ExmplDir)
238         $(Verb) du -sk $(ObjDir)
240 build-for-llvm-top:
241         $(Verb) if test ! -f ./config.status ; then \
242           ./configure --prefix="$(LLVM_TOP)/install" \
243             --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
244         fi
245         $(Verb) $(MAKE) tools-only
247 SVN = svn
248 SVN-UPDATE-OPTIONS =
249 AWK = awk
250 SUB-SVN-DIRS = $(AWK) '/I|\?      / {print $$2}'   \
251                 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
252                 | $(AWK) '/^Path:\ / {print $$2}'
254 update:
255         $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
256         @ $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
258 happiness: update all check-all
260 .PHONY: srpm rpm update happiness
262 # declare all targets at this level to be serial:
264 .NOTPARALLEL:
266 else # Building "Apple-style."
267 # In an Apple-style build, once configuration is done, lines marked
268 # "Apple-style" are removed with sed!  Please don't remove these!
269 # Look for the string "Apple-style" in utils/buildit/build_llvm.
270 include $(shell find . -name GNUmakefile) # Building "Apple-style."
271 endif # Building "Apple-style."