зеркало из https://github.com/microsoft/clang.git
Fixes Makefile based build for examples/Tooling.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@132380 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
3eada1e29a
Коммит
d06f59833a
|
@ -9,6 +9,6 @@
|
|||
|
||||
CLANG_LEVEL := ..
|
||||
|
||||
PARALLEL_DIRS := clang-interpreter PrintFunctionNames
|
||||
PARALLEL_DIRS := clang-interpreter PrintFunctionNames Tooling
|
||||
|
||||
include $(CLANG_LEVEL)/Makefile
|
||||
|
|
|
@ -17,8 +17,10 @@ TOOL_NO_EXPORTS = 1
|
|||
|
||||
LINK_COMPONENTS := support mc
|
||||
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a \
|
||||
clangTooling.a clangSema.a clangAnalysis.a \
|
||||
clangAST.a clangParse.a clangLex.a clangBasic.a
|
||||
clangTooling.a clangParse.a clangSema.a clangAnalysis.a \
|
||||
clangAST.a clangLex.a clangBasic.a
|
||||
|
||||
PARALLEL_DIRS := RemoveCStrCalls
|
||||
|
||||
include $(CLANG_LEVEL)/Makefile
|
||||
|
||||
|
|
|
@ -0,0 +1,23 @@
|
|||
##===- examples/Tooling/RemoveCStrCalls/Makefile -----------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
||||
# This file is distributed under the University of Illinois Open Source
|
||||
# License. See LICENSE.TXT for details.
|
||||
#
|
||||
##===----------------------------------------------------------------------===##
|
||||
|
||||
CLANG_LEVEL := ../../..
|
||||
|
||||
TOOLNAME = remove-cstr-calls
|
||||
NO_INSTALL = 1
|
||||
|
||||
# No plugins, optimize startup time.
|
||||
TOOL_NO_EXPORTS = 1
|
||||
|
||||
LINK_COMPONENTS := support mc
|
||||
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
|
||||
clangParse.a clangSema.a clangAnalysis.a \
|
||||
clangAST.a clangLex.a clangBasic.a
|
||||
|
||||
include $(CLANG_LEVEL)/Makefile
|
Загрузка…
Ссылка в новой задаче