Factor some code to parseSectionFlags and fix the default type of a section.
[llvm.git] / Makefile
blob3c6b953eb9ffc10d02f829d0492f20156837d0f2
1 #===- ./Makefile -------------------------------------------*- 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 LEVEL := .
12 # Top-Level LLVM Build Stages:
13 # 1. Build lib/System and lib/Support, 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.
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/System lib/Support utils
31 OPTIONAL_DIRS :=
32 else
33 DIRS := lib/System lib/Support 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/runtime tools/clang/docs \
72 tools/lto
73 OPTIONAL_DIRS :=
74 NO_INSTALL = 1
75 endif
77 ifeq ($(MAKECMDGOALS),install-clang-c)
78 DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
79 tools/clang/tools/libclang tools/clang/tools/c-index-test \
80 tools/clang/include/clang-c
81 OPTIONAL_DIRS :=
82 NO_INSTALL = 1
83 endif
85 ifeq ($(MAKECMDGOALS),clang-only)
86 DIRS := $(filter-out tools runtime docs unittests, $(DIRS)) \
87 tools/clang tools/lto
88 OPTIONAL_DIRS :=
89 endif
91 ifeq ($(MAKECMDGOALS),unittests)
92 DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
93 OPTIONAL_DIRS :=
94 endif
96 # Use NO_INSTALL define of the Makefile of each directory for deciding
97 # if the directory is installed or not
98 ifeq ($(MAKECMDGOALS),install)
99 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
100 endif
102 # If we're cross-compiling, build the build-hosted tools first
103 ifeq ($(LLVM_CROSS_COMPILING),1)
104 all:: cross-compile-build-tools
106 clean::
107 $(Verb) rm -rf BuildTools
109 cross-compile-build-tools:
110 $(Verb) if [ ! -f BuildTools/Makefile ]; then \
111 $(MKDIR) BuildTools; \
112 cd BuildTools ; \
113 unset CFLAGS ; \
114 unset CXXFLAGS ; \
115 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
116 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE); \
117 cd .. ; \
118 fi; \
119 (unset SDKROOT; \
120 $(MAKE) -C BuildTools \
121 BUILD_DIRS_ONLY=1 \
122 UNIVERSAL= \
123 ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
124 ENABLE_PROFILING=$(ENABLE_PROFILING) \
125 ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
126 DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
127 ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
128 CFLAGS= \
129 CXXFLAGS= \
130 ) || exit 1;
131 endif
133 # Include the main makefile machinery.
134 include $(LLVM_SRC_ROOT)/Makefile.rules
136 # Specify options to pass to configure script when we're
137 # running the dist-check target
138 DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
140 .PHONY: debug-opt-prof
141 debug-opt-prof:
142 $(Echo) Building Debug Version
143 $(Verb) $(MAKE)
144 $(Echo)
145 $(Echo) Building Optimized Version
146 $(Echo)
147 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
148 $(Echo)
149 $(Echo) Building Profiling Version
150 $(Echo)
151 $(Verb) $(MAKE) ENABLE_PROFILING=1
153 dist-hook::
154 $(Echo) Eliminating files constructed by configure
155 $(Verb) $(RM) -f \
156 $(TopDistDir)/include/llvm/Config/config.h \
157 $(TopDistDir)/include/llvm/System/DataTypes.h
159 clang-only: all
160 tools-only: all
161 libs-only: all
162 install-clang: install
163 install-clang-c: install
164 install-libs: install
166 #------------------------------------------------------------------------
167 # Make sure the generated headers are up-to-date. This must be kept in
168 # sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
169 #------------------------------------------------------------------------
170 FilesToConfig := \
171 include/llvm/Config/config.h \
172 include/llvm/Config/Targets.def \
173 include/llvm/Config/AsmPrinters.def \
174 include/llvm/Config/AsmParsers.def \
175 include/llvm/Config/Disassemblers.def \
176 include/llvm/System/DataTypes.h \
177 tools/llvmc/src/Base.td
178 FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
180 all-local:: $(FilesToConfigPATH)
181 $(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
182 $(Echo) Regenerating $*
183 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
184 .PRECIOUS: $(FilesToConfigPATH)
186 # NOTE: This needs to remain as the last target definition in this file so
187 # that it gets executed last.
188 ifneq ($(BUILD_DIRS_ONLY),1)
189 all::
190 $(Echo) '*****' Completed $(BuildMode) Build
191 ifneq ($(ENABLE_OPTIMIZED),1)
192 $(Echo) '*****' Note: Debug build can be 10 times slower than an
193 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
194 $(Echo) '*****' make an optimized build. Alternatively you can
195 $(Echo) '*****' configure with --enable-optimized.
196 endif
197 endif
199 check-llvm2cpp:
200 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
202 srpm: $(LLVM_OBJ_ROOT)/llvm.spec
203 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
205 rpm: $(LLVM_OBJ_ROOT)/llvm.spec
206 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
208 show-footprint:
209 $(Verb) du -sk $(LibDir)
210 $(Verb) du -sk $(ToolDir)
211 $(Verb) du -sk $(ExmplDir)
212 $(Verb) du -sk $(ObjDir)
214 build-for-llvm-top:
215 $(Verb) if test ! -f ./config.status ; then \
216 ./configure --prefix="$(LLVM_TOP)/install" \
217 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
219 $(Verb) $(MAKE) tools-only
221 SVN = svn
222 SVN-UPDATE-OPTIONS =
223 AWK = awk
224 SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
225 | LC_ALL=C xargs $(SVN) info 2>/dev/null \
226 | $(AWK) '/Path:\ / {print $$2}'
228 update:
229 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
230 @ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
232 happiness: update all check-all
234 .PHONY: srpm rpm update happiness
236 # declare all targets at this level to be serial:
238 .NOTPARALLEL:
240 else # Building "Apple-style."
241 # In an Apple-style build, once configuration is done, lines marked
242 # "Apple-style" are removed with sed! Please don't remove these!
243 # Look for the string "Apple-style" in utils/buildit/build_llvm.
244 include $(shell find . -name GNUmakefile) # Building "Apple-style."
245 endif # Building "Apple-style."