• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1import sys
2
3# FIXME: llvm orc does not support the COFF rtld.
4if sys.platform == 'win32':
5    config.unsupported = True
6
7# Requires a non-empty default triple for these tests.
8# Passing ` -DLLVM_DEFAULT_TARGET_TRIPLE="" ` when the
9# host target isn't available is how LLVM filters
10# tests that require the host target to be available
11# for JIT tests.
12if 'default_triple' not in config.available_features:
13    config.unsupported = True
14
15