2004-01-05 05:28:15 +00:00
|
|
|
##===- tools/Makefile --------------------------------------*- Makefile -*-===##
|
2008-11-25 21:38:12 +00:00
|
|
|
#
|
2003-10-20 22:29:16 +00:00
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
2007-12-29 20:07:17 +00:00
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
2008-11-25 21:38:12 +00:00
|
|
|
#
|
2003-10-20 22:29:16 +00:00
|
|
|
##===----------------------------------------------------------------------===##
|
2004-01-05 05:28:15 +00:00
|
|
|
|
2002-12-06 03:53:40 +00:00
|
|
|
LEVEL := ..
|
2009-01-24 00:00:41 +00:00
|
|
|
|
2011-10-16 02:54:26 +00:00
|
|
|
include $(LEVEL)/Makefile.config
|
|
|
|
|
2009-01-24 00:00:41 +00:00
|
|
|
# Build clang if present.
|
2011-10-16 02:54:26 +00:00
|
|
|
|
|
|
|
ifneq ($(CLANG_SRC_ROOT),)
|
|
|
|
OPTIONAL_PARALLEL_DIRS := $(CLANG_SRC_ROOT)
|
|
|
|
else
|
|
|
|
OPTIONAL_PARALLEL_DIRS := clang
|
|
|
|
endif
|
2009-01-24 00:00:41 +00:00
|
|
|
|
2014-06-05 08:49:55 +00:00
|
|
|
# Build LLD and LLDB if present. Note LLDB must be built last as it depends on
|
|
|
|
# the wider LLVM infrastructure (including Clang).
|
2014-10-14 06:56:28 +00:00
|
|
|
OPTIONAL_PARALLEL_DIRS += lld
|
|
|
|
OPTIONAL_DIRS := lldb
|
2011-02-20 04:17:15 +00:00
|
|
|
|
2008-11-25 21:38:12 +00:00
|
|
|
# NOTE: The tools are organized into five groups of four consisting of one
|
|
|
|
# large and three small executables. This is done to minimize memory load
|
2007-02-09 17:02:07 +00:00
|
|
|
# in parallel builds. Please retain this ordering.
|
2011-03-18 17:11:39 +00:00
|
|
|
DIRS := llvm-config
|
2013-10-02 15:42:23 +00:00
|
|
|
PARALLEL_DIRS := opt llvm-as llvm-dis llc llvm-ar llvm-nm llvm-link \
|
2013-10-02 15:14:13 +00:00
|
|
|
lli llvm-extract llvm-mc bugpoint llvm-bcanalyzer llvm-diff \
|
|
|
|
macho-dump llvm-objdump llvm-readobj llvm-rtdyld \
|
|
|
|
llvm-dwarfdump llvm-cov llvm-size llvm-stress llvm-mcmarkup \
|
2014-07-24 23:14:40 +00:00
|
|
|
llvm-profdata llvm-symbolizer obj2yaml yaml2obj llvm-c-test \
|
2015-03-15 01:30:58 +00:00
|
|
|
llvm-cxxdump verify-uselistorder dsymutil llvm-pdbdump
|
2007-12-08 23:58:46 +00:00
|
|
|
|
2012-11-27 01:24:25 +00:00
|
|
|
# If Intel JIT Events support is configured, build an extra tool to test it.
|
|
|
|
ifeq ($(USE_INTEL_JITEVENTS), 1)
|
|
|
|
PARALLEL_DIRS += llvm-jitlistener
|
|
|
|
endif
|
|
|
|
|
2009-04-25 22:08:52 +00:00
|
|
|
# Let users override the set of tools to build from the command line.
|
|
|
|
ifdef ONLY_TOOLS
|
|
|
|
OPTIONAL_PARALLEL_DIRS :=
|
2011-02-20 04:17:15 +00:00
|
|
|
OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS))
|
|
|
|
PARALLEL_DIRS := $(filter-out lldb,$(ONLY_TOOLS))
|
2009-04-25 22:08:52 +00:00
|
|
|
endif
|
|
|
|
|
2010-03-05 00:59:18 +00:00
|
|
|
# These libraries build as dynamic libraries (.dylib /.so), they can only be
|
|
|
|
# built if ENABLE_PIC is set.
|
2010-12-16 15:42:26 +00:00
|
|
|
ifndef ONLY_TOOLS
|
2009-03-03 07:45:09 +00:00
|
|
|
ifeq ($(ENABLE_PIC),1)
|
2010-11-29 00:20:34 +00:00
|
|
|
# gold only builds if binutils is around. It requires "lto" to build before
|
2013-09-19 22:15:52 +00:00
|
|
|
# it so it is added to DIRS. llvm-lto also requires lto
|
|
|
|
DIRS += lto llvm-lto
|
2010-11-29 00:20:34 +00:00
|
|
|
ifdef BINUTILS_INCDIR
|
2013-09-19 22:15:52 +00:00
|
|
|
DIRS += gold
|
2010-11-29 00:20:34 +00:00
|
|
|
endif
|
2010-07-20 18:25:19 +00:00
|
|
|
|
2010-11-29 00:20:34 +00:00
|
|
|
PARALLEL_DIRS += bugpoint-passes
|
2006-09-08 18:00:43 +00:00
|
|
|
endif
|
2006-05-30 21:20:55 +00:00
|
|
|
|
2010-10-30 00:54:26 +00:00
|
|
|
ifdef LLVM_HAS_POLLY
|
|
|
|
PARALLEL_DIRS += polly
|
|
|
|
endif
|
2010-12-16 15:42:26 +00:00
|
|
|
endif
|
2010-10-30 00:54:26 +00:00
|
|
|
|
2010-11-29 00:20:28 +00:00
|
|
|
# On Win32, loadable modules can be built with ENABLE_SHARED.
|
|
|
|
ifneq ($(ENABLE_SHARED),1)
|
2010-11-29 08:58:11 +00:00
|
|
|
ifneq (,$(filter $(HOST_OS), Cygwin MingW))
|
2010-11-29 00:20:28 +00:00
|
|
|
PARALLEL_DIRS := $(filter-out bugpoint-passes, \
|
|
|
|
$(PARALLEL_DIRS))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-10-23 02:33:23 +00:00
|
|
|
ifneq (,$(filter go,$(BINDINGS_TO_BUILD)))
|
|
|
|
PARALLEL_DIRS += llvm-go
|
|
|
|
endif
|
|
|
|
|
2006-09-08 18:33:49 +00:00
|
|
|
include $(LEVEL)/Makefile.common
|