forked from OSchip/llvm-project
clang-check: Unittests doesn't requires tools.
llvm-svn: 200147
This commit is contained in:
parent
b80df40b1d
commit
d51b0aad70
|
@ -55,7 +55,6 @@ lit.site.cfg: FORCE
|
|||
Unit/lit.site.cfg: FORCE
|
||||
@echo "Making Clang 'Unit/lit.site.cfg' file..."
|
||||
@$(MKDIR) $(dir $@)
|
||||
@$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp
|
||||
@$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> unit.tmp
|
||||
@$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp
|
||||
@$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp
|
||||
|
|
|
@ -2,7 +2,6 @@ import sys
|
|||
|
||||
## Autogenerated by LLVM/Clang configuration.
|
||||
# Do not edit!
|
||||
config.llvm_tools_dir = "@LLVM_TOOLS_DIR@"
|
||||
config.llvm_libs_dir = "@LLVM_LIBS_DIR@"
|
||||
config.llvm_build_mode = "@LLVM_BUILD_MODE@"
|
||||
config.clang_obj_root = "@CLANG_BINARY_DIR@"
|
||||
|
@ -15,7 +14,6 @@ config.target_triple = "@TARGET_TRIPLE@"
|
|||
# parameters. This is used when we can't determine the tool dir at
|
||||
# configuration time.
|
||||
try:
|
||||
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
||||
config.llvm_libs_dir = config.llvm_libs_dir % lit_config.params
|
||||
config.llvm_build_mode = config.llvm_build_mode % lit_config.params
|
||||
except KeyError:
|
||||
|
|
Loading…
Reference in New Issue