Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(474)

Unified Diff: tools/Makefile

Issue 945553002: Allow LLVM TOOLS_ONLY builds w/ subzero, localize noirt/srpc (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-llvm.git@master
Patch Set: rebase Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Makefile.rules ('k') | tools/pnacl-llc/Makefile » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/Makefile
diff --git a/tools/Makefile b/tools/Makefile
index 93ea4b992624aaefb2d7e086a052cd8292d51676..7096b965943bc0ca11a1dd56a1408ada9c71b26c 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -47,8 +47,13 @@ endif
# Let users override the set of tools to build from the command line.
ifdef ONLY_TOOLS
OPTIONAL_PARALLEL_DIRS :=
+ # @LOCALMOD-BEGIN -- Allow subzero to be built as a tool if requested.
+ ifneq ($(findstring subzero,$(ONLY_TOOLS)),)
+ OPTIONAL_PARALLEL_DIRS += $(SUBZERO_SRC_ROOT)
+ endif
+ # @LOCALMOD-END
OPTIONAL_DIRS := $(findstring lldb,$(ONLY_TOOLS))
- PARALLEL_DIRS := $(filter-out lldb,$(ONLY_TOOLS))
+ PARALLEL_DIRS := $(filter-out lldb subzero,$(ONLY_TOOLS)) # @LOCALMOD
endif
# These libraries build as dynamic libraries (.dylib /.so), they can only be
« no previous file with comments | « Makefile.rules ('k') | tools/pnacl-llc/Makefile » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698