mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
45e94e8a0b
The example demonstrates how to use a module summary index file produced for ThinLTO to: * find the module that defines the main entry point * find all extra modules that are required for the build A LIT test runs the example as part of the LLVM test suite [1] and shows how to create a module summary index file. The code also provides two Error types that can be useful when working with ThinLTO summaries. [1] if LLVM_BUILD_EXAMPLES=ON and platform is not Windows Differential Revision: https://reviews.llvm.org/D85974
6 lines
189 B
INI
6 lines
189 B
INI
if not config.build_examples or sys.platform in ['win32']:
|
|
config.unsupported = True
|
|
|
|
# Test discovery should ignore subdirectories that contain test inputs.
|
|
config.excludes = ['Inputs']
|