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

Side by Side Diff: tools/clang/empty_string/Makefile

Issue 12746010: Implement clang tool that converts std::string("") to std::string(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whee Created 7 years, 9 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 ##===-------- tools/toolTemplate/Makefile ------------------*- Makefile -*-===##
2 #
3 # The LLVM Compiler Infrastructure
Nico 2013/03/27 16:35:29 Same license question
dcheng 2013/03/28 00:10:17 I've reimplemented the Makefile (I know, it looks
4 #
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
7 #
8 ##===----------------------------------------------------------------------===##
9
10 CLANG_LEVEL := ../..
11
12 TOOLNAME = empty-string
13 NO_INSTALL = 1
14
15 # No plugins, optimize startup time.
Nico 2013/03/27 16:35:29 Does this have a measurable impact?
dcheng 2013/03/28 00:10:17 On a relatively small sample (~47 second runs)...
Nico 2013/03/29 22:30:36 We don't build regular clang with it (else the plu
dcheng 2013/03/29 22:42:55 I'll take it out for now and measure on OS X later
16 TOOL_NO_EXPORTS = 1
17
18 include $(CLANG_LEVEL)/../../Makefile.config
19 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc
20 USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
21 clangRewriteFrontend.a clangRewriteCore .a \
22 clangParse.a clangSema.a clangAnalysis. a \
23 clangAST.a clangASTMatchers.a clangEdit .a clangLex.a clangBasic.a
24
25 include $(CLANG_LEVEL)/Makefile
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698