2004-04-24 08:10:56 +08:00
|
|
|
#===- ./Makefile -------------------------------------------*- Makefile -*--===#
|
2009-01-08 10:11:55 +08:00
|
|
|
#
|
2003-10-21 06:26:57 +08:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-30 04:11:13 +08:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2009-01-08 10:11:55 +08:00
|
|
|
#
|
2004-04-24 08:10:56 +08:00
|
|
|
#===------------------------------------------------------------------------===#
|
2006-06-03 06:41:18 +08:00
|
|
|
|
2006-07-27 03:10:34 +08:00
|
|
|
LEVEL := .
|
2006-09-04 12:27:07 +08:00
|
|
|
|
|
|
|
# Top-Level LLVM Build Stages:
|
2011-10-02 00:41:13 +08:00
|
|
|
# 1. Build lib/Support and lib/TableGen, which are used by utils (tblgen).
|
2006-09-04 12:27:07 +08:00
|
|
|
# 2. Build utils, which is used by VMCore.
|
|
|
|
# 3. Build VMCore, which builds the Intrinsics.inc file used by libs.
|
2011-11-11 03:59:35 +08:00
|
|
|
# 4. Build libs, which are needed by llvm-config.
|
|
|
|
# 5. Build llvm-config, which determines inter-lib dependencies for tools.
|
|
|
|
# 6. Build tools, runtime, docs.
|
2006-09-04 12:27:07 +08:00
|
|
|
#
|
2008-11-10 15:33:13 +08:00
|
|
|
# When cross-compiling, there are some things (tablegen) that need to
|
|
|
|
# be build for the build system first.
|
2009-10-23 01:22:37 +08:00
|
|
|
|
|
|
|
# If "RC_ProjectName" exists in the environment, and its value is
|
|
|
|
# "llvmCore", then this is an "Apple-style" build; search for
|
|
|
|
# "Apple-style" in the comments for more info. Anything else is a
|
|
|
|
# normal build.
|
2009-10-31 03:51:32 +08:00
|
|
|
ifneq ($(findstring llvmCore, $(RC_ProjectName)),llvmCore) # Normal build (not "Apple-style").
|
|
|
|
|
2008-11-10 15:33:13 +08:00
|
|
|
ifeq ($(BUILD_DIRS_ONLY),1)
|
2011-12-01 18:50:19 +08:00
|
|
|
DIRS := lib/Support lib/TableGen utils tools/llvm-config-2
|
2011-10-08 08:27:38 +08:00
|
|
|
OPTIONAL_DIRS := tools/clang/utils/TableGen
|
2008-11-10 15:33:13 +08:00
|
|
|
else
|
2011-10-02 00:41:13 +08:00
|
|
|
DIRS := lib/Support lib/TableGen utils lib/VMCore lib tools/llvm-shlib \
|
2011-12-01 18:50:19 +08:00
|
|
|
tools/llvm-config tools/llvm-config-2 tools runtime docs unittests
|
2009-11-17 06:38:00 +08:00
|
|
|
OPTIONAL_DIRS := projects bindings
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BUILD_EXAMPLES),1)
|
|
|
|
OPTIONAL_DIRS += examples
|
2008-11-10 15:33:13 +08:00
|
|
|
endif
|
2007-07-12 07:44:08 +08:00
|
|
|
|
2009-01-01 10:24:48 +08:00
|
|
|
EXTRA_DIST := test unittests llvm.spec include win32 Xcode
|
2001-06-07 04:29:01 +08:00
|
|
|
|
2009-01-08 10:11:55 +08:00
|
|
|
include $(LEVEL)/Makefile.config
|
2006-04-07 06:15:51 +08:00
|
|
|
|
2010-02-25 14:34:33 +08:00
|
|
|
ifneq ($(ENABLE_SHARED),1)
|
|
|
|
DIRS := $(filter-out tools/llvm-shlib, $(DIRS))
|
|
|
|
endif
|
|
|
|
|
2010-11-13 03:24:06 +08:00
|
|
|
ifneq ($(ENABLE_DOCS),1)
|
|
|
|
DIRS := $(filter-out docs, $(DIRS))
|
|
|
|
endif
|
|
|
|
|
2006-07-27 03:10:34 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),libs-only)
|
2006-11-17 11:32:33 +08:00
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
2006-07-27 03:10:34 +08:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
2006-06-03 06:41:18 +08:00
|
|
|
|
2007-12-13 10:17:17 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),install-libs)
|
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS))
|
|
|
|
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
|
|
|
|
endif
|
|
|
|
|
2005-05-26 05:03:17 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),tools-only)
|
2006-11-17 11:32:33 +08:00
|
|
|
DIRS := $(filter-out runtime docs, $(DIRS))
|
2006-07-27 03:10:34 +08:00
|
|
|
OPTIONAL_DIRS :=
|
2004-02-04 07:05:24 +08:00
|
|
|
endif
|
2006-06-03 06:41:18 +08:00
|
|
|
|
2009-01-20 03:48:23 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),install-clang)
|
2010-01-20 08:43:07 +08:00
|
|
|
DIRS := tools/clang/tools/driver tools/clang/lib/Headers \
|
2011-11-27 08:26:22 +08:00
|
|
|
tools/clang/tools/libclang tools/clang/tools/c-index-test \
|
|
|
|
tools/clang/include/clang-c \
|
2010-07-16 09:29:50 +08:00
|
|
|
tools/clang/runtime tools/clang/docs \
|
2011-06-11 05:47:14 +08:00
|
|
|
tools/lto runtime
|
2009-01-20 03:48:23 +08:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
NO_INSTALL = 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(MAKECMDGOALS),clang-only)
|
2011-06-11 05:47:14 +08:00
|
|
|
DIRS := $(filter-out tools docs unittests, $(DIRS)) \
|
2010-07-16 09:29:50 +08:00
|
|
|
tools/clang tools/lto
|
2009-01-20 03:48:23 +08:00
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
|
|
|
|
2009-01-01 10:24:48 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),unittests)
|
|
|
|
DIRS := $(filter-out tools runtime docs, $(DIRS)) utils unittests
|
|
|
|
OPTIONAL_DIRS :=
|
|
|
|
endif
|
|
|
|
|
2009-05-09 01:32:47 +08:00
|
|
|
# Use NO_INSTALL define of the Makefile of each directory for deciding
|
|
|
|
# if the directory is installed or not
|
2007-02-21 14:23:20 +08:00
|
|
|
ifeq ($(MAKECMDGOALS),install)
|
2007-09-18 20:49:39 +08:00
|
|
|
OPTIONAL_DIRS := $(filter bindings, $(OPTIONAL_DIRS))
|
2007-02-21 14:23:20 +08:00
|
|
|
endif
|
|
|
|
|
2010-11-27 14:59:16 +08:00
|
|
|
# Don't build unittests when ONLY_TOOLS is set.
|
|
|
|
ifneq ($(ONLY_TOOLS),)
|
|
|
|
DIRS := $(filter-out unittests, $(DIRS))
|
|
|
|
endif
|
|
|
|
|
2008-11-10 15:33:13 +08:00
|
|
|
# If we're cross-compiling, build the build-hosted tools first
|
|
|
|
ifeq ($(LLVM_CROSS_COMPILING),1)
|
|
|
|
all:: cross-compile-build-tools
|
|
|
|
|
|
|
|
clean::
|
|
|
|
$(Verb) rm -rf BuildTools
|
|
|
|
|
|
|
|
cross-compile-build-tools:
|
|
|
|
$(Verb) if [ ! -f BuildTools/Makefile ]; then \
|
|
|
|
$(MKDIR) BuildTools; \
|
|
|
|
cd BuildTools ; \
|
2009-10-31 03:53:38 +08:00
|
|
|
unset CFLAGS ; \
|
|
|
|
unset CXXFLAGS ; \
|
2009-09-03 07:52:23 +08:00
|
|
|
$(PROJ_SRC_DIR)/configure --build=$(BUILD_TRIPLE) \
|
2011-10-08 08:27:38 +08:00
|
|
|
--host=$(BUILD_TRIPLE) --target=$(BUILD_TRIPLE) \
|
|
|
|
--disable-polly ; \
|
2008-11-10 15:33:13 +08:00
|
|
|
cd .. ; \
|
|
|
|
fi; \
|
2010-07-21 04:44:02 +08:00
|
|
|
(unset SDKROOT; \
|
|
|
|
$(MAKE) -C BuildTools \
|
2009-09-03 07:52:23 +08:00
|
|
|
BUILD_DIRS_ONLY=1 \
|
|
|
|
UNIVERSAL= \
|
2011-11-12 08:18:02 +08:00
|
|
|
TARGET_NATIVE_ARCH="$(TARGET_NATIVE_ARCH)" \
|
2011-11-12 06:59:45 +08:00
|
|
|
TARGETS_TO_BUILD="$(TARGETS_TO_BUILD)" \
|
2009-09-03 07:52:23 +08:00
|
|
|
ENABLE_OPTIMIZED=$(ENABLE_OPTIMIZED) \
|
|
|
|
ENABLE_PROFILING=$(ENABLE_PROFILING) \
|
|
|
|
ENABLE_COVERAGE=$(ENABLE_COVERAGE) \
|
|
|
|
DISABLE_ASSERTIONS=$(DISABLE_ASSERTIONS) \
|
|
|
|
ENABLE_EXPENSIVE_CHECKS=$(ENABLE_EXPENSIVE_CHECKS) \
|
2011-11-12 06:51:42 +08:00
|
|
|
ENABLE_LIBCPP=$(ENABLE_LIBCPP) \
|
2010-04-24 08:46:14 +08:00
|
|
|
CFLAGS= \
|
|
|
|
CXXFLAGS= \
|
2009-09-03 07:52:23 +08:00
|
|
|
) || exit 1;
|
2008-11-10 15:33:13 +08:00
|
|
|
endif
|
|
|
|
|
2006-06-03 06:41:18 +08:00
|
|
|
# Include the main makefile machinery.
|
2006-04-08 10:14:37 +08:00
|
|
|
include $(LLVM_SRC_ROOT)/Makefile.rules
|
|
|
|
|
2005-05-24 10:33:20 +08:00
|
|
|
# Specify options to pass to configure script when we're
|
|
|
|
# running the dist-check target
|
|
|
|
DIST_CHECK_CONFIG_OPTIONS = --with-llvmgccdir=$(LLVMGCCDIR)
|
|
|
|
|
2004-11-25 17:08:54 +08:00
|
|
|
.PHONY: debug-opt-prof
|
|
|
|
debug-opt-prof:
|
|
|
|
$(Echo) Building Debug Version
|
|
|
|
$(Verb) $(MAKE)
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Optimized Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_OPTIMIZED=1
|
|
|
|
$(Echo)
|
|
|
|
$(Echo) Building Profiling Version
|
|
|
|
$(Echo)
|
|
|
|
$(Verb) $(MAKE) ENABLE_PROFILING=1
|
|
|
|
|
2004-10-25 16:27:37 +08:00
|
|
|
dist-hook::
|
2004-10-30 17:19:36 +08:00
|
|
|
$(Echo) Eliminating files constructed by configure
|
|
|
|
$(Verb) $(RM) -f \
|
2004-10-26 15:05:09 +08:00
|
|
|
$(TopDistDir)/include/llvm/Config/config.h \
|
2010-11-30 02:16:10 +08:00
|
|
|
$(TopDistDir)/include/llvm/Support/DataTypes.h
|
2004-10-25 16:27:37 +08:00
|
|
|
|
2009-01-20 03:48:23 +08:00
|
|
|
clang-only: all
|
2004-02-04 06:56:40 +08:00
|
|
|
tools-only: all
|
2005-05-26 05:03:17 +08:00
|
|
|
libs-only: all
|
2009-01-20 03:48:23 +08:00
|
|
|
install-clang: install
|
2007-12-13 10:17:17 +08:00
|
|
|
install-libs: install
|
2005-08-25 12:59:49 +08:00
|
|
|
|
2011-04-12 06:37:39 +08:00
|
|
|
# If SHOW_DIAGNOSTICS is enabled, clear the diagnostics file first.
|
|
|
|
ifeq ($(SHOW_DIAGNOSTICS),1)
|
|
|
|
clean-diagnostics:
|
|
|
|
$(Verb) rm -f $(LLVM_OBJ_ROOT)/$(BuildMode)/diags
|
|
|
|
.PHONY: clean-diagnostics
|
|
|
|
|
|
|
|
all-local:: clean-diagnostics
|
|
|
|
endif
|
|
|
|
|
2005-08-25 12:59:49 +08:00
|
|
|
#------------------------------------------------------------------------
|
|
|
|
# Make sure the generated headers are up-to-date. This must be kept in
|
|
|
|
# sync with the AC_CONFIG_HEADER invocations in autoconf/configure.ac
|
|
|
|
#------------------------------------------------------------------------
|
|
|
|
FilesToConfig := \
|
|
|
|
include/llvm/Config/config.h \
|
2009-06-17 04:12:29 +08:00
|
|
|
include/llvm/Config/Targets.def \
|
2009-11-25 12:46:58 +08:00
|
|
|
include/llvm/Config/AsmPrinters.def \
|
|
|
|
include/llvm/Config/AsmParsers.def \
|
|
|
|
include/llvm/Config/Disassemblers.def \
|
2011-09-20 07:22:41 +08:00
|
|
|
include/llvm/Support/DataTypes.h
|
2005-08-25 12:59:49 +08:00
|
|
|
FilesToConfigPATH := $(addprefix $(LLVM_OBJ_ROOT)/,$(FilesToConfig))
|
|
|
|
|
|
|
|
all-local:: $(FilesToConfigPATH)
|
2009-01-08 10:11:55 +08:00
|
|
|
$(FilesToConfigPATH) : $(LLVM_OBJ_ROOT)/% : $(LLVM_SRC_ROOT)/%.in
|
2005-08-25 12:59:49 +08:00
|
|
|
$(Echo) Regenerating $*
|
|
|
|
$(Verb) cd $(LLVM_OBJ_ROOT) && $(ConfigStatusScript) $*
|
|
|
|
.PRECIOUS: $(FilesToConfigPATH)
|
2006-04-07 23:58:18 +08:00
|
|
|
|
2006-04-08 00:21:59 +08:00
|
|
|
# NOTE: This needs to remain as the last target definition in this file so
|
|
|
|
# that it gets executed last.
|
2008-11-10 15:33:13 +08:00
|
|
|
ifneq ($(BUILD_DIRS_ONLY),1)
|
2009-01-08 10:11:55 +08:00
|
|
|
all::
|
2010-07-07 15:48:00 +08:00
|
|
|
$(Echo) '*****' Completed $(BuildMode) Build
|
2010-07-08 00:48:16 +08:00
|
|
|
ifneq ($(ENABLE_OPTIMIZED),1)
|
2006-04-07 23:58:18 +08:00
|
|
|
$(Echo) '*****' Note: Debug build can be 10 times slower than an
|
|
|
|
$(Echo) '*****' optimized build. Use 'make ENABLE_OPTIMIZED=1' to
|
2008-02-28 19:48:14 +08:00
|
|
|
$(Echo) '*****' make an optimized build. Alternatively you can
|
|
|
|
$(Echo) '*****' configure with --enable-optimized.
|
2011-04-12 06:37:39 +08:00
|
|
|
ifeq ($(SHOW_DIAGNOSTICS),1)
|
|
|
|
$(Verb) if test -s $(LLVM_OBJ_ROOT)/$(BuildMode)/diags; then \
|
2011-11-03 03:48:19 +08:00
|
|
|
$(LLVM_SRC_ROOT)/utils/clang-parse-diagnostics-file -a \
|
2011-04-12 06:37:39 +08:00
|
|
|
$(LLVM_OBJ_ROOT)/$(BuildMode)/diags; \
|
|
|
|
fi
|
|
|
|
endif
|
2006-04-07 23:58:18 +08:00
|
|
|
endif
|
2008-11-10 15:33:13 +08:00
|
|
|
endif
|
2006-04-08 00:21:59 +08:00
|
|
|
|
2006-06-01 15:27:53 +08:00
|
|
|
check-llvm2cpp:
|
2007-04-15 14:22:48 +08:00
|
|
|
$(Verb)$(MAKE) check TESTSUITE=Feature RUNLLVM2CPP=1
|
2006-07-27 03:10:34 +08:00
|
|
|
|
2009-01-08 10:11:55 +08:00
|
|
|
srpm: $(LLVM_OBJ_ROOT)/llvm.spec
|
2006-08-16 08:43:50 +08:00
|
|
|
rpmbuild -bs $(LLVM_OBJ_ROOT)/llvm.spec
|
|
|
|
|
2009-01-08 10:11:55 +08:00
|
|
|
rpm: $(LLVM_OBJ_ROOT)/llvm.spec
|
2006-08-16 08:43:50 +08:00
|
|
|
rpmbuild -bb --target $(TARGET_TRIPLE) $(LLVM_OBJ_ROOT)/llvm.spec
|
|
|
|
|
2007-02-06 07:18:58 +08:00
|
|
|
show-footprint:
|
|
|
|
$(Verb) du -sk $(LibDir)
|
|
|
|
$(Verb) du -sk $(ToolDir)
|
|
|
|
$(Verb) du -sk $(ExmplDir)
|
|
|
|
$(Verb) du -sk $(ObjDir)
|
|
|
|
|
2007-07-08 11:50:22 +08:00
|
|
|
build-for-llvm-top:
|
|
|
|
$(Verb) if test ! -f ./config.status ; then \
|
|
|
|
./configure --prefix="$(LLVM_TOP)/install" \
|
|
|
|
--with-llvm-gcc="$(LLVM_TOP)/llvm-gcc" ; \
|
|
|
|
fi
|
|
|
|
$(Verb) $(MAKE) tools-only
|
|
|
|
|
2008-02-28 21:06:50 +08:00
|
|
|
SVN = svn
|
2008-02-28 22:58:14 +08:00
|
|
|
SVN-UPDATE-OPTIONS =
|
2008-02-28 21:06:50 +08:00
|
|
|
AWK = awk
|
2008-02-29 02:46:56 +08:00
|
|
|
SUB-SVN-DIRS = $(AWK) '/\?\ \ \ \ \ \ / {print $$2}' \
|
2009-04-25 01:00:03 +08:00
|
|
|
| LC_ALL=C xargs $(SVN) info 2>/dev/null \
|
2011-10-20 02:35:30 +08:00
|
|
|
| $(AWK) '/^Path:\ / {print $$2}'
|
2008-02-28 21:06:50 +08:00
|
|
|
|
|
|
|
update:
|
2008-03-22 06:17:07 +08:00
|
|
|
$(SVN) $(SVN-UPDATE-OPTIONS) update $(LLVM_SRC_ROOT)
|
|
|
|
@ $(SVN) status $(LLVM_SRC_ROOT) | $(SUB-SVN-DIRS) | xargs $(SVN) $(SVN-UPDATE-OPTIONS) update
|
2008-02-28 21:06:50 +08:00
|
|
|
|
2010-03-22 06:23:02 +08:00
|
|
|
happiness: update all check-all
|
2008-02-28 21:06:50 +08:00
|
|
|
|
|
|
|
.PHONY: srpm rpm update happiness
|
2007-07-08 11:50:22 +08:00
|
|
|
|
2008-02-28 19:48:14 +08:00
|
|
|
# declare all targets at this level to be serial:
|
|
|
|
|
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2009-10-23 01:22:37 +08:00
|
|
|
else # Building "Apple-style."
|
|
|
|
# In an Apple-style build, once configuration is done, lines marked
|
|
|
|
# "Apple-style" are removed with sed! Please don't remove these!
|
|
|
|
# Look for the string "Apple-style" in utils/buildit/build_llvm.
|
|
|
|
include $(shell find . -name GNUmakefile) # Building "Apple-style."
|
|
|
|
endif # Building "Apple-style."
|