Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |