Makefile revision bf361f58df152df70972fe1e212dc83880463f01
16d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#===- ./Makefile -------------------------------------------*- Makefile -*--===# 2e488e9360b1a865ba604330965edcf139e590b65John Criswell# 3e488e9360b1a865ba604330965edcf139e590b65John Criswell# The LLVM Compiler Infrastructure 4e488e9360b1a865ba604330965edcf139e590b65John Criswell# 5e488e9360b1a865ba604330965edcf139e590b65John Criswell# This file is distributed under the University of Illinois Open Source 6e488e9360b1a865ba604330965edcf139e590b65John Criswell# License. See LICENSE.TXT for details. 7e488e9360b1a865ba604330965edcf139e590b65John Criswell# 86d5ab866fc1492c12b1f2531bbe7dcdb55ac9e15Misha Brukman#===------------------------------------------------------------------------===# 9009505452b713ed2e3a8e99c5545a6e721c65495Chris Lattner 108b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid SpencerLEVEL := . 11009505452b713ed2e3a8e99c5545a6e721c65495Chris Lattner 1206a801a38c43716564b3b9fb6c7a04ed242ecb61Reid Spencer# Top-Level LLVM Build Stages: 1393bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# 1. Build lib/Support and lib/TableGen, which are used by utils (tblgen). 148b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid Spencer# 2. Build utils, which is used by IR. 1593bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# 3. Build IR, which builds the Intrinsics.inc file used by libs. 168b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid Spencer# 4. Build libs, which are needed by llvm-config. 178b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid Spencer# 5. Build llvm-config, which determines inter-lib dependencies for tools. 1893bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# 6. Build tools, runtime, docs. 1930ea2fa93314e5b6ce3f58beaffe37f04ba76ac8Reid Spencer# 2093bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# When cross-compiling, there are some things (tablegen) that need to 2193bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# be build for the build system first. 2293bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer 2393bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# If "RC_ProjectName" exists in the environment, and its value is 2406a801a38c43716564b3b9fb6c7a04ed242ecb61Reid Spencer# "llvmCore", then this is an "Apple-style" build; search for 2593bc3cdd43a7f4e764049d12bd6aad019b834432Reid Spencer# "Apple-style" in the comments for more info. Anything else is a 268b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid Spencer# normal build. 276a8c2907b0721ce53ad6887be5b10eef50dac060Chris Lattnerifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore) # Normal build (not "Apple-style"). 2890c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencer 2990c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencerifeq ($(BUILD_DIRS_ONLY),1) 3006a801a38c43716564b3b9fb6c7a04ed242ecb61Reid Spencer DIRS := lib/Support lib/TableGen utils tools/llvm-config 3106a801a38c43716564b3b9fb6c7a04ed242ecb61Reid Spencer OPTIONAL_DIRS := tools/clang/utils/TableGen 3245eeed9b359eba3a69fd0911c543feed3d112d15Reid Spencerelse 3345eeed9b359eba3a69fd0911c543feed3d112d15Reid Spencer DIRS := lib/Support lib/TableGen utils lib/IR lib tools/llvm-shlib \ 3445eeed9b359eba3a69fd0911c543feed3d112d15Reid Spencer tools/llvm-config tools runtime docs unittests 3545eeed9b359eba3a69fd0911c543feed3d112d15Reid Spencer OPTIONAL_DIRS := projects bindings 36df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerendif 37df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer 38df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerifeq ($(BUILD_EXAMPLES),1) 39df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer OPTIONAL_DIRS += examples 40df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerendif 41df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer 42df561f4ab347736cc513ef0483d9049987ac32c9Reid SpencerEXTRA_DIST := test unittests llvm.spec include win32 Xcode 43df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer 44df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerinclude $(LEVEL)/Makefile.config 45df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer 46df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerifneq ($(ENABLE_SHARED),1) 47df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencer DIRS := $(filter-out tools/llvm-shlib, $(DIRS)) 48df561f4ab347736cc513ef0483d9049987ac32c9Reid Spencerendif 49151f8ba3645defc371eb4b68427384e411305734Reid Spencer 50cc2d1e25f37d0d00c7f7f3ec562be61bc34e54caReid Spencerifneq ($(ENABLE_DOCS),1) 51cc2d1e25f37d0d00c7f7f3ec562be61bc34e54caReid Spencer DIRS := $(filter-out docs, $(DIRS)) 5290c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencerendif 5390c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencer 5490c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencerifeq ($(MAKECMDGOALS),libs-only) 5590c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencer DIRS := $(filter-out tools runtime docs, $(DIRS)) 5690c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencer OPTIONAL_DIRS := 5790c29494121e3a4cefb5cae5d272178bbc49d3a9Reid Spencerendif 58151f8ba3645defc371eb4b68427384e411305734Reid Spencer 599cf662b367795f07ddf2c6deca33839b6581548bChris Lattnerifeq ($(MAKECMDGOALS),install-libs) 608b1f7676bddcf099e30b849f511ad5a6a86ea8a0Reid Spencer DIRS := $(filter-out tools runtime docs, $(DIRS)) 61ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) 62ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencerendif 63ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer 64ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencerifeq ($(MAKECMDGOALS),tools-only) 65ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer DIRS := $(filter-out runtime docs, $(DIRS)) 66ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer OPTIONAL_DIRS := 67ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencerendif 68ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer 69ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencerifeq ($(MAKECMDGOALS),install-clang) 70ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer DIRS := tools/clang/tools/driver tools/clang/lib/Headers \ 71ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer tools/clang/tools/libclang \ 72ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer tools/clang/tools/c-index-test \ 73ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer tools/clang/include/clang-c \ 74ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer tools/clang/runtime tools/clang/docs \ 75ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer tools/lto runtime 76ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer OPTIONAL_DIRS := 77ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencer NO_INSTALL = 1 78ca739c685b963b103ae2d201e038ac37e7af4b29Reid Spencerendif 79e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer 8038ab6d887c660c7e2fe08707e8f982ab451fb224Chris Lattnerifeq ($(MAKECMDGOALS),clang-only) 8138ab6d887c660c7e2fe08707e8f982ab451fb224Chris Lattner DIRS := $(filter-out tools docs unittests, $(DIRS)) \ 82e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer tools/clang tools/lto 83e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer OPTIONAL_DIRS := 84e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencerendif 85e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer 86e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencerifeq ($(MAKECMDGOALS),unittests) 87e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests 88e22f3c004a04806dbe45936ab0b5e48e6c5bc016Reid Spencer OPTIONAL_DIRS := 8938ab6d887c660c7e2fe08707e8f982ab451fb224Chris Lattnerendif 90 91# Use NO_INSTALL define of the Makefile of each directory for deciding 92# if the directory is installed or not 93ifeq ($(MAKECMDGOALS),install) 94 OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS)) 95endif 96 97# Don't build unittests when ONLY_TOOLS is set. 98ifneq ($(ONLY_TOOLS),) 99 DIRS := $(filter-out unittests, $(DIRS)) 100endif 101 102# If we're cross-compiling, build the build-hosted tools first 103ifeq ($(LLVM_CROSS_COMPILING),1) 104all:: cross-compile-build-tools 105 106clean:: 107 $(Verb) rm -rf BuildTools 108 109cross-compile-build-tools: 110 $(Verb) if [ ! -f BuildTools/Makefile ]; then \ 111 $(MKDIR) BuildTools; \ 112 cd BuildTools ; \ 113 unset CFLAGS ; \ 114 unset CXXFLAGS ; \ 115 unset SDKROOT ; \ 116 unset UNIVERSAL_SDK_PATH ; \ 117 $(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \ 118 --host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \ 119 --disable-polly ; \ 120 cd .. ; \ 121 fi; \ 122 ($(MAKE) -C BuildTools \ 123 BUILD_DIRS_ONLY=1 \ 124 UNIVERSAL= \ 125 UNIVERSAL_SDK_PATH= \ 126 SDKROOT= \ 127 TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \ 128 TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \ 129 ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \ 130 ENABLE_PROFILING=$(ENABLE_PROFILING) \ 131 ENABLE_COVERAGE=$(ENABLE_COVERAGE) \ 132 DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \ 133 ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \ 134 ENABLE_LIBCPP=$(ENABLE_LIBCPP) \ 135 CFLAGS= \ 136 CXXFLAGS= \ 137 ) || exit 1; 138endif 139 140# Include the main makefile machinery. 141include $(LLVM_SRC_ROOT)/Makefile.rules 142 143# Specify options to pass to configure script when we're 144# running the dist-check target 145DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR) 146 147.PHONY: debug-opt-prof 148debug-opt-prof: 149 $(Echo) Building Debug Version 150 $(Verb) $(MAKE) 151 $(Echo) 152 $(Echo) Building Optimized Version 153 $(Echo) 154 $(Verb) $(MAKE) ENABLE_OPTIMIZED=1 155 $(Echo) 156 $(Echo) Building Profiling Version 157 $(Echo) 158 $(Verb) $(MAKE) ENABLE_PROFILING=1 159 160dist-hook:: 161 $(Echo) Eliminating files constructed by configure 162 $(Verb) $(RM) -f \ 163 $(TopDistDir)/include/llvm/Config/config.h \ 164 $(TopDistDir)/include/llvm/Support/DataTypes.h 165 166clang-only: all 167tools-only: all 168libs-only: all 169install-clang: install 170install-libs: install 171 172# If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first. 173ifeq ($(SHOW_DIAGNOSTICS),1) 174clean-diagnostics: 175 $(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags 176.PHONY: clean-diagnostics 177 178all-local:: clean-diagnostics 179endif 180 181#------------------------------------------------------------------------ 182# Make sure the generated files are up-to-date. This must be kept in 183# sync with the AC_CONFIG_HEADER and AC_CONFIG_FILE invocations in 184# autoconf/configure.ac. 185# Note that Makefile.config is covered by its own separate rule 186# in Makefile.rules where it can be reused by sub-projects. 187#------------------------------------------------------------------------ 188FilesToConfig := \ 189 bindings/ocaml/llvm/META.llvm \ 190 docs/doxygen.cfg \ 191 llvm.spec \ 192 include/llvm/Config/config.h \ 193 include/llvm/Config/llvm-config.h \ 194 include/llvm/Config/Targets.def \ 195 include/llvm/Config/AsmPrinters.def \ 196 include/llvm/Config/AsmParsers.def \ 197 include/llvm/Config/Disassemblers.def \ 198 include/llvm/Support/DataTypes.h 199FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig)) 200 201all-local:: $(FilesToConfigPATH) 202$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in 203 $(Echo) Regenerating $* 204 $(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $* 205.PRECIOUS: $(FilesToConfigPATH) 206 207# NOTE: This needs to remain as the last target definition in this file so 208# that it gets executed last. 209ifneq ($(BUILD_DIRS_ONLY),1) 210all:: 211 $(Echo) '*****' Completed $(BuildMode) Build 212ifneq ($(ENABLE_OPTIMIZED),1) 213 $(Echo) '*****' Note: Debug build can be 10 times slower than an 214 $(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to 215 $(Echo) '*****' make an optimized build. Alternatively you can 216 $(Echo) '*****' configure with --enable-optimized. 217ifeq ($(SHOW_DIAGNOSTICS),1) 218 $(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \ 219 $(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \ 220 $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \ 221 fi 222endif 223endif 224endif 225 226check-llvm2cpp: 227 $(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1 228 229srpm: $(LLVM_OBJ_ROOT)/llvm.spec 230 rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec 231 232rpm: $(LLVM_OBJ_ROOT)/llvm.spec 233 rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec 234 235show-footprint: 236 $(Verb) du -sk $(LibDir) 237 $(Verb) du -sk $(ToolDir) 238 $(Verb) du -sk $(ExmplDir) 239 $(Verb) du -sk $(ObjDir) 240 241build-for-llvm-top: 242 $(Verb) if test ! -f ./config.status ; then \ 243 ./configure --prefix="$(LLVM_TOP)/install" \ 244 --with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \ 245 fi 246 $(Verb) $(MAKE) tools-only 247 248SVN = svn 249SVN-UPDATE-OPTIONS = 250AWK = awk 251 252# Multiline variable defining a recursive function for finding svn repos rooted at 253# a given path. svnup() requires one argument: the root to search from. 254define SUB_SVN_DIRS 255svnup() { 256 dirs=`svn status --no-ignore $$1 | awk '/^(I|\?) / {print $$2}' | LC_ALL=C xargs svn info 2>/dev/null | awk '/^Path:\ / {print $$2}'`; 257 if [ "$$dirs" = "" ]; then 258 return; 259 fi; 260 for f in $$dirs; do 261 echo $$f; 262 svnup $$f; 263 done 264} 265endef 266export SUB_SVN_DIRS 267 268update: 269 $(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT) 270 @eval $$SUB_SVN_DIRS; $(SVN) status --no-ignore $(LLVM_SRC_ROOT) | svnup $(LLVM_SRC_ROOT) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update 271 272happiness: update all check-all 273 274.PHONY: srpm rpm update happiness 275 276# declare all targets at this level to be serial: 277 278.NOTPARALLEL: 279 280else # Building "Apple-style." 281# In an Apple-style build, once configuration is done, lines marked 282# "Apple-style" are removed with sed! Please don't remove these! 283# Look for the string "Apple-style" in utils/buildit/build_llvm. 284include $(shell find . -name GNUmakefile) # Building "Apple-style." 285endif # Building "Apple-style." 286