Skip to content

Commit d78b789

Browse files
committed
Revert r125956, which broke the build if you _don't_ have lldb checked out.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@125964 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 5028249 commit d78b789

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

tools/Makefile

+1-6
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ LEVEL := ..
1212
# Build clang if present.
1313
OPTIONAL_PARALLEL_DIRS := clang
1414

15-
# Build LLDB if present. Note LLDB must be built last as it depends on the
16-
# wider LLVM infrastructure (including Clang).
17-
OPTIONAL_DIRS := lldb
18-
1915
# NOTE: The tools are organized into five groups of four consisting of one
2016
# large and three small executables. This is done to minimize memory load
2117
# in parallel builds. Please retain this ordering.
@@ -30,8 +26,7 @@ PARALLEL_DIRS := opt llvm-as llvm-dis \
3026
# Let users override the set of tools to build from the command line.
3127
ifdef ONLY_TOOLS
3228
OPTIONAL_PARALLEL_DIRS :=
33-
OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS))
34-
PARALLEL_DIRS := $(filter-out lldb,$(ONLY_TOOLS))
29+
PARALLEL_DIRS := $(ONLY_TOOLS)
3530
endif
3631

3732
include $(LEVEL)/Makefile.config

0 commit comments

Comments
 (0)