mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 08:23:21 +01:00
311d4c23b3
For example, cur) unittests/ADT/Release/ADTTests new) unittests/ADT/ADTTests RUNTIME_BUILD_MODE can be substituted to CMAKE_CFG_INTDIR. With Make and Ninja, the tree is not built with multiple configurations. Then, including the build type in target directory doesn't make sense. See also "How can I build multiple modes without switching?" http://www.cmake.org/Wiki/CMake_FAQ CMAKE_CFG_INTDIR is set to "." With multiple-configuration-aware build system, like Visual Studio, each unittest is built on appropriate directory, for example, unittests/ADT/Release/ADTTests.exe CMAKE_CFG_INTDIR is set to build system's variable, like "$(Configuration)" or "$(OutDir)". Thus, "--param build_config" is also deprecated. llvm-svn: 173616
33 lines
1.1 KiB
Python
Executable File
33 lines
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Variables configured at build time.
|
|
llvm_source_root = "@LLVM_SOURCE_DIR@"
|
|
llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
|
|
# Make sure we can find the lit package.
|
|
sys.path.insert(0, os.path.join(llvm_source_root, 'utils', 'lit'))
|
|
|
|
# Set up some builtin parameters, so that by default the LLVM test suite
|
|
# configuration file knows how to find the object tree.
|
|
builtin_parameters = {
|
|
'build_mode' : "@CMAKE_CFG_INTDIR@",
|
|
'llvm_site_config' : os.path.join(llvm_obj_root, 'test', 'lit.site.cfg')
|
|
}
|
|
|
|
clang_obj_root = os.path.join(llvm_obj_root, 'tools', 'clang')
|
|
|
|
if os.path.exists(clang_obj_root):
|
|
builtin_parameters['clang_site_config'] = \
|
|
os.path.join(clang_obj_root, 'test', 'lit.site.cfg')
|
|
clang_tools_extra_obj_root = os.path.join(clang_obj_root, 'tools', 'extra')
|
|
if os.path.exists(clang_tools_extra_obj_root):
|
|
builtin_parameters['clang_tools_extra_site_config'] = \
|
|
os.path.join(clang_tools_extra_obj_root, 'test', 'lit.site.cfg')
|
|
|
|
if __name__=='__main__':
|
|
import lit
|
|
lit.main(builtin_parameters)
|