2009-09-08 13:31:44 +08:00
|
|
|
# -*- Python -*-
|
|
|
|
|
|
|
|
# Configuration file for the 'lit' test runner.
|
|
|
|
|
|
|
|
import os
|
2010-11-29 08:20:09 +08:00
|
|
|
import sys
|
2011-01-04 01:30:25 +08:00
|
|
|
import re
|
2012-10-26 10:19:02 +08:00
|
|
|
import platform
|
2017-07-07 05:46:47 +08:00
|
|
|
import subprocess
|
2009-09-08 13:31:44 +08:00
|
|
|
|
2013-08-10 00:22:05 +08:00
|
|
|
import lit.util
|
|
|
|
import lit.formats
|
2017-09-17 02:46:21 +08:00
|
|
|
from lit.llvm import llvm_config
|
2013-08-10 00:22:05 +08:00
|
|
|
|
2009-09-08 13:31:44 +08:00
|
|
|
# name: The name of this test suite.
|
|
|
|
config.name = 'LLVM'
|
|
|
|
|
|
|
|
# testFormat: The test format to use to interpret tests.
|
2017-09-17 02:46:21 +08:00
|
|
|
config.test_format = lit.formats.ShTest(not llvm_config.use_lit_shell)
|
2009-09-08 13:31:44 +08:00
|
|
|
|
2013-08-09 04:59:13 +08:00
|
|
|
# suffixes: A list of file extensions to treat as test files. This is overriden
|
|
|
|
# by individual lit.local.cfg files in the test subdirectories.
|
2016-04-05 05:23:44 +08:00
|
|
|
config.suffixes = ['.ll', '.c', '.cxx', '.test', '.txt', '.s', '.mir']
|
2009-09-08 13:31:44 +08:00
|
|
|
|
2012-07-02 18:18:06 +08:00
|
|
|
# excludes: A list of directories to exclude from the testsuite. The 'Inputs'
|
|
|
|
# subdirectories contain auxiliary inputs for various tests in their parent
|
|
|
|
# directories.
|
2013-08-16 08:37:11 +08:00
|
|
|
config.excludes = ['Inputs', 'CMakeLists.txt', 'README.txt', 'LICENSE.txt']
|
2012-07-02 18:18:06 +08:00
|
|
|
|
2009-09-08 13:31:44 +08:00
|
|
|
# test_source_root: The root path where tests are located.
|
|
|
|
config.test_source_root = os.path.dirname(__file__)
|
|
|
|
|
|
|
|
# test_exec_root: The root path where tests should be run.
|
2017-09-16 06:10:46 +08:00
|
|
|
config.test_exec_root = os.path.join(config.llvm_obj_root, 'test')
|
2009-09-08 13:31:44 +08:00
|
|
|
|
2013-04-12 12:07:13 +08:00
|
|
|
# Tweak the PATH to include the tools dir.
|
2017-09-17 02:46:21 +08:00
|
|
|
llvm_config.with_environment('PATH', config.llvm_tools_dir, append_path=True)
|
2010-02-26 06:09:09 +08:00
|
|
|
|
2017-09-17 02:46:21 +08:00
|
|
|
# Propagate some variables from the host environment.
|
|
|
|
llvm_config.with_system_environment(['HOME', 'INCLUDE', 'LIB', 'TMP', 'TEMP', 'ASAN_SYMBOLIZER_PATH', 'MSAN_SYMBOLIZER_PATH'])
|
2010-12-07 09:23:49 +08:00
|
|
|
|
2010-06-13 00:21:19 +08:00
|
|
|
|
2014-10-30 16:29:45 +08:00
|
|
|
# Set up OCAMLPATH to include newly built OCaml libraries.
|
2017-09-16 06:10:46 +08:00
|
|
|
top_ocaml_lib = os.path.join(config.llvm_lib_dir, 'ocaml')
|
|
|
|
llvm_ocaml_lib = os.path.join(top_ocaml_lib, 'llvm')
|
2017-09-17 02:46:21 +08:00
|
|
|
|
|
|
|
llvm_config.with_system_environment('OCAMLPATH')
|
|
|
|
llvm_config.with_environment('OCAMLPATH', top_ocaml_lib, append_path=True)
|
|
|
|
llvm_config.with_environment('OCAMLPATH', llvm_ocaml_lib, append_path=True)
|
|
|
|
|
|
|
|
llvm_config.with_system_environment('CAML_LD_LIBRARY_PATH')
|
|
|
|
llvm_config.with_environment('CAML_LD_LIBRARY_PATH', llvm_ocaml_lib, append_path=True)
|
2014-10-30 16:29:45 +08:00
|
|
|
|
2014-10-30 16:29:57 +08:00
|
|
|
# Set up OCAMLRUNPARAM to enable backtraces in OCaml tests.
|
2017-09-17 02:46:21 +08:00
|
|
|
llvm_config.with_environment('OCAMLRUNPARAM', 'b')
|
2014-10-30 16:29:57 +08:00
|
|
|
|
2016-08-05 06:01:38 +08:00
|
|
|
# Provide the path to asan runtime lib 'libclang_rt.asan_osx_dynamic.dylib' if
|
|
|
|
# available. This is darwin specific since it's currently only needed on darwin.
|
|
|
|
def get_asan_rtlib():
|
|
|
|
if not "Address" in config.llvm_use_sanitizer or \
|
|
|
|
not "Darwin" in config.host_os or \
|
|
|
|
not "x86" in config.host_triple:
|
|
|
|
return ""
|
|
|
|
try:
|
|
|
|
import glob
|
|
|
|
except:
|
|
|
|
print("glob module not found, skipping get_asan_rtlib() lookup")
|
|
|
|
return ""
|
|
|
|
# The libclang_rt.asan_osx_dynamic.dylib path is obtained using the relative
|
|
|
|
# path from the host cc.
|
|
|
|
host_lib_dir = os.path.join(os.path.dirname(config.host_cc), "../lib")
|
|
|
|
asan_dylib_dir_pattern = host_lib_dir + \
|
|
|
|
"/clang/*/lib/darwin/libclang_rt.asan_osx_dynamic.dylib"
|
|
|
|
found_dylibs = glob.glob(asan_dylib_dir_pattern)
|
|
|
|
if len(found_dylibs) != 1:
|
|
|
|
return ""
|
|
|
|
return found_dylibs[0]
|
|
|
|
|
2014-09-03 06:28:02 +08:00
|
|
|
lli = 'lli'
|
Introduce llvm::sys::getProcessTriple() function.
In r143502, we renamed getHostTriple() to getDefaultTargetTriple()
as part of work to allow the user to supply a different default
target triple at configure time. This change also affected the JIT.
However, it is inappropriate to use the default target triple in the
JIT in most circumstances because this will not necessarily match
the current architecture used by the process, leading to illegal
instruction and other such errors at run time.
Introduce the getProcessTriple() function for use in the JIT and
its clients, and cause the JIT to use it. On architectures with a
single bitness, the host and process triples are identical. On other
architectures, the host triple represents the architecture of the
host CPU, while the process triple represents the architecture used
by the host CPU to interpret machine code within the current process.
For example, when executing 32-bit code on a 64-bit Linux machine,
the host triple may be 'x86_64-unknown-linux-gnu', while the process
triple may be 'i386-unknown-linux-gnu'.
This fixes JIT for the 32-on-64-bit (and vice versa) build on non-Apple
platforms.
Differential Revision: http://llvm-reviews.chandlerc.com/D254
llvm-svn: 172627
2013-01-17 01:27:22 +08:00
|
|
|
# The target triple used by default by lli is the process target triple (some
|
|
|
|
# triple appropriate for generating code for the current process) but because
|
|
|
|
# we don't support COFF in MCJIT well enough for the tests, force ELF format on
|
|
|
|
# Windows. FIXME: the process target triple should be used here, but this is
|
|
|
|
# difficult to obtain on Windows.
|
2015-03-21 06:08:40 +08:00
|
|
|
if re.search(r'cygwin|mingw32|windows-gnu|windows-msvc|win32', config.host_triple):
|
2014-09-03 06:28:02 +08:00
|
|
|
lli += ' -mtriple='+config.host_triple+'-elf'
|
|
|
|
config.substitutions.append( ('%lli', lli ) )
|
2012-10-03 02:38:34 +08:00
|
|
|
|
2014-01-30 09:39:17 +08:00
|
|
|
# Similarly, have a macro to use llc with DWARF even when the host is win32.
|
|
|
|
llc_dwarf = 'llc'
|
|
|
|
if re.search(r'win32', config.target_triple):
|
|
|
|
llc_dwarf += ' -mtriple='+config.target_triple.replace('-win32', '-mingw32')
|
|
|
|
config.substitutions.append( ('%llc_dwarf', llc_dwarf) )
|
|
|
|
|
2012-06-28 08:16:51 +08:00
|
|
|
# Add site-specific substitutions.
|
2015-02-14 17:43:57 +08:00
|
|
|
config.substitutions.append( ('%gold', config.gold_executable) )
|
2014-10-17 06:48:02 +08:00
|
|
|
config.substitutions.append( ('%go', config.go_executable) )
|
2012-06-28 08:16:51 +08:00
|
|
|
config.substitutions.append( ('%llvmshlibdir', config.llvm_shlib_dir) )
|
|
|
|
config.substitutions.append( ('%shlibext', config.llvm_shlib_ext) )
|
2014-01-23 05:52:35 +08:00
|
|
|
config.substitutions.append( ('%exeext', config.llvm_exe_ext) )
|
2014-07-11 22:36:39 +08:00
|
|
|
config.substitutions.append( ('%python', config.python_executable) )
|
2016-01-09 08:14:35 +08:00
|
|
|
config.substitutions.append( ('%host_cc', config.host_cc) )
|
2009-09-08 13:31:44 +08:00
|
|
|
|
2016-08-05 06:01:38 +08:00
|
|
|
# Provide the path to asan runtime lib if available. On darwin, this lib needs
|
|
|
|
# to be loaded via DYLD_INSERT_LIBRARIES before libLTO.dylib in case the files
|
|
|
|
# to be linked contain instrumented sanitizer code.
|
2016-08-05 07:58:30 +08:00
|
|
|
ld64_cmd = config.ld64_executable
|
|
|
|
asan_rtlib = get_asan_rtlib()
|
|
|
|
if asan_rtlib:
|
|
|
|
ld64_cmd = "DYLD_INSERT_LIBRARIES={} {}".format(asan_rtlib, ld64_cmd)
|
|
|
|
config.substitutions.append( ('%ld64', ld64_cmd) )
|
2016-08-05 06:01:38 +08:00
|
|
|
|
2014-10-29 06:39:36 +08:00
|
|
|
# OCaml substitutions.
|
|
|
|
# Support tests for both native and bytecode builds.
|
2014-11-03 17:50:53 +08:00
|
|
|
config.substitutions.append( ('%ocamlc',
|
2014-12-02 03:50:23 +08:00
|
|
|
"%s ocamlc -cclib -L%s %s" %
|
2017-09-16 06:10:46 +08:00
|
|
|
(config.ocamlfind_executable, config.llvm_lib_dir, config.ocaml_flags)) )
|
2017-01-07 05:33:48 +08:00
|
|
|
if config.have_ocamlopt:
|
2014-11-03 17:50:53 +08:00
|
|
|
config.substitutions.append( ('%ocamlopt',
|
2014-11-03 17:51:34 +08:00
|
|
|
"%s ocamlopt -cclib -L%s -cclib -Wl,-rpath,%s %s" %
|
2017-09-16 06:10:46 +08:00
|
|
|
(config.ocamlfind_executable, config.llvm_lib_dir, config.llvm_lib_dir, config.ocaml_flags)) )
|
2014-10-29 06:39:36 +08:00
|
|
|
else:
|
2014-11-03 17:50:53 +08:00
|
|
|
config.substitutions.append( ('%ocamlopt', "true" ) )
|
2014-10-29 06:39:36 +08:00
|
|
|
|
2011-01-04 01:30:25 +08:00
|
|
|
# For each occurrence of an llvm tool name as its own word, replace it
|
|
|
|
# with the full path to the build directory holding that tool. This
|
|
|
|
# ensures that we are testing the tools just built and not some random
|
|
|
|
# tools that might happen to be in the user's PATH. Thus this list
|
|
|
|
# includes every tool placed in $(LLVM_OBJ_ROOT)/$(BuildMode)/bin
|
|
|
|
# (llvm_tools_dir in lit parlance).
|
2014-03-22 01:31:35 +08:00
|
|
|
|
|
|
|
# Avoid matching RUN line fragments that are actually part of
|
|
|
|
# path names or options or whatever.
|
|
|
|
# The regex is a pre-assertion to avoid matching a preceding
|
|
|
|
# dot, hyphen, carat, or slash (.foo, -foo, etc.). Some patterns
|
|
|
|
# also have a post-assertion to not match a trailing hyphen (foo-).
|
2017-09-22 05:45:45 +08:00
|
|
|
NOJUNK = r"(?<!\.|-|\^|/|<)"
|
|
|
|
|
|
|
|
|
|
|
|
def find_tool_substitution(pattern):
|
|
|
|
# Extract the tool name from the pattern. This relies on the tool
|
|
|
|
# name being surrounded by \b word match operators. If the
|
|
|
|
# pattern starts with "| ", include it in the string to be
|
|
|
|
# substituted.
|
|
|
|
tool_match = re.match(r"^(\\)?((\| )?)\W+b([0-9A-Za-z-_]+)\\b\W*$",
|
|
|
|
pattern)
|
|
|
|
tool_pipe = tool_match.group(2)
|
|
|
|
tool_name = tool_match.group(4)
|
|
|
|
# Did the user specify the tool path + arguments? This allows things like
|
|
|
|
# llvm-lit "-Dllc=llc -enable-misched -verify-machineinstrs"
|
|
|
|
tool_path = lit_config.params.get(tool_name)
|
|
|
|
if tool_path is None:
|
|
|
|
tool_path = lit.util.which(tool_name, config.llvm_tools_dir)
|
|
|
|
if tool_path is None:
|
|
|
|
return tool_name, tool_path, tool_pipe
|
|
|
|
if (tool_name == "llc" and
|
|
|
|
'LLVM_ENABLE_MACHINE_VERIFIER' in os.environ and
|
|
|
|
os.environ['LLVM_ENABLE_MACHINE_VERIFIER'] == "1"):
|
|
|
|
tool_path += " -verify-machineinstrs"
|
|
|
|
if (tool_name == "llvm-go"):
|
|
|
|
tool_path += " go=" + config.go_executable
|
|
|
|
return tool_name, tool_path, tool_pipe
|
|
|
|
|
|
|
|
|
|
|
|
for pattern in [r"\bbugpoint\b(?!-)",
|
|
|
|
NOJUNK + r"\bllc\b",
|
|
|
|
r"\blli\b",
|
|
|
|
r"\bllvm-ar\b",
|
|
|
|
r"\bllvm-as\b",
|
|
|
|
r"\bllvm-bcanalyzer\b",
|
|
|
|
r"\bllvm-config\b",
|
|
|
|
r"\bllvm-cov\b",
|
|
|
|
r"\bllvm-cxxdump\b",
|
|
|
|
r"\bllvm-cvtres\b",
|
|
|
|
r"\bllvm-diff\b",
|
|
|
|
r"\bllvm-dis\b",
|
|
|
|
r"\bllvm-dsymutil\b",
|
|
|
|
r"\bllvm-dwarfdump\b",
|
|
|
|
r"\bllvm-extract\b",
|
|
|
|
r"\bllvm-isel-fuzzer\b",
|
|
|
|
r"\bllvm-lib\b",
|
|
|
|
r"\bllvm-link\b",
|
|
|
|
r"\bllvm-lto\b",
|
|
|
|
r"\bllvm-lto2\b",
|
|
|
|
r"\bllvm-mc\b",
|
|
|
|
r"\bllvm-mcmarkup\b",
|
|
|
|
r"\bllvm-modextract\b",
|
|
|
|
r"\bllvm-nm\b",
|
|
|
|
r"\bllvm-objcopy\b",
|
|
|
|
r"\bllvm-objdump\b",
|
|
|
|
r"\bllvm-pdbutil\b",
|
|
|
|
r"\bllvm-profdata\b",
|
|
|
|
r"\bllvm-ranlib\b",
|
|
|
|
r"\bllvm-readobj\b",
|
|
|
|
r"\bllvm-rtdyld\b",
|
|
|
|
r"\bllvm-size\b",
|
|
|
|
r"\bllvm-split\b",
|
|
|
|
r"\bllvm-strings\b",
|
|
|
|
r"\bllvm-tblgen\b",
|
|
|
|
r"\bllvm-c-test\b",
|
|
|
|
r"\bllvm-cxxfilt\b",
|
|
|
|
r"\bllvm-xray\b",
|
|
|
|
NOJUNK + r"\bllvm-symbolizer\b",
|
|
|
|
NOJUNK + r"\bopt\b",
|
|
|
|
r"\bFileCheck\b",
|
|
|
|
r"\bobj2yaml\b",
|
|
|
|
NOJUNK + r"\bsancov\b",
|
|
|
|
NOJUNK + r"\bsanstats\b",
|
|
|
|
r"\byaml2obj\b",
|
|
|
|
r"\byaml-bench\b",
|
|
|
|
r"\bverify-uselistorder\b",
|
|
|
|
# Handle these specially as they are strings searched
|
|
|
|
# for during testing.
|
|
|
|
r"\| \bcount\b",
|
|
|
|
r"\| \bnot\b"]:
|
|
|
|
tool_name, tool_path, tool_pipe = find_tool_substitution(pattern)
|
|
|
|
if not tool_path:
|
|
|
|
# Warn, but still provide a substitution.
|
|
|
|
lit_config.note('Did not find ' + tool_name + ' in ' + config.llvm_tools_dir)
|
|
|
|
tool_path = config.llvm_tools_dir + '/' + tool_name
|
|
|
|
config.substitutions.append((pattern, tool_pipe + tool_path))
|
2011-01-04 01:30:25 +08:00
|
|
|
|
2015-09-03 02:03:01 +08:00
|
|
|
# For tools that are optional depending on the config, we won't warn
|
|
|
|
# if they're missing.
|
2017-09-22 05:45:45 +08:00
|
|
|
for pattern in [r"\bllvm-go\b",
|
|
|
|
r"\bllvm-mt\b",
|
|
|
|
r"\bKaleidoscope-Ch3\b",
|
|
|
|
r"\bKaleidoscope-Ch4\b",
|
|
|
|
r"\bKaleidoscope-Ch5\b",
|
|
|
|
r"\bKaleidoscope-Ch6\b",
|
|
|
|
r"\bKaleidoscope-Ch7\b",
|
|
|
|
r"\bKaleidoscope-Ch8\b"]:
|
|
|
|
tool_name, tool_path, tool_pipe = find_tool_substitution(pattern)
|
|
|
|
if not tool_path:
|
|
|
|
# Provide a substitution anyway, for the sake of consistent errors.
|
|
|
|
tool_path = config.llvm_tools_dir + '/' + tool_name
|
|
|
|
config.substitutions.append((pattern, tool_pipe + tool_path))
|
2015-09-03 02:03:01 +08:00
|
|
|
|
|
|
|
|
2014-06-10 06:42:55 +08:00
|
|
|
### Targets
|
|
|
|
|
|
|
|
config.targets = frozenset(config.targets_to_build.split())
|
|
|
|
|
2016-08-11 03:03:18 +08:00
|
|
|
for arch in config.targets_to_build.split():
|
|
|
|
config.available_features.add(arch.lower() + '-registered-target')
|
|
|
|
|
2010-11-29 08:20:09 +08:00
|
|
|
### Features
|
|
|
|
|
2013-06-26 18:56:44 +08:00
|
|
|
# Others/can-execute.txt
|
|
|
|
if sys.platform not in ['win32']:
|
|
|
|
config.available_features.add('can-execute')
|
2016-08-10 04:48:22 +08:00
|
|
|
config.available_features.add('not_COFF')
|
2013-06-26 18:56:44 +08:00
|
|
|
|
2010-11-29 08:20:09 +08:00
|
|
|
# Loadable module
|
|
|
|
# FIXME: This should be supplied by Makefile or autoconf.
|
|
|
|
if sys.platform in ['win32', 'cygwin']:
|
|
|
|
loadable_module = (config.enable_shared == 1)
|
|
|
|
else:
|
|
|
|
loadable_module = True
|
|
|
|
|
|
|
|
if loadable_module:
|
|
|
|
config.available_features.add('loadable_module')
|
2011-06-23 07:23:19 +08:00
|
|
|
|
2017-01-07 05:33:54 +08:00
|
|
|
# Static libraries are not built if BUILD_SHARED_LIBS is ON.
|
|
|
|
if not config.build_shared_libs:
|
|
|
|
config.available_features.add("static-libs")
|
|
|
|
|
2013-04-11 03:53:26 +08:00
|
|
|
# Direct object generation
|
2015-12-20 11:48:23 +08:00
|
|
|
if not 'hexagon' in config.target_triple:
|
2013-04-11 03:53:26 +08:00
|
|
|
config.available_features.add("object-emission")
|
|
|
|
|
2015-09-16 13:34:32 +08:00
|
|
|
# LLVM can be configured with an empty default triple
|
|
|
|
# Some tests are "generic" and require a valid default triple
|
|
|
|
if config.target_triple:
|
|
|
|
config.available_features.add("default_triple")
|
2013-09-13 18:59:01 +08:00
|
|
|
|
2011-11-28 13:09:15 +08:00
|
|
|
import subprocess
|
2014-07-28 07:11:06 +08:00
|
|
|
|
|
|
|
def have_ld_plugin_support():
|
2016-12-15 00:20:25 +08:00
|
|
|
if not os.path.exists(os.path.join(config.llvm_shlib_dir, 'LLVMgold.so')):
|
2014-07-28 07:11:06 +08:00
|
|
|
return False
|
|
|
|
|
2015-08-31 15:10:05 +08:00
|
|
|
ld_cmd = subprocess.Popen([config.gold_executable, '--help'], stdout = subprocess.PIPE, env={'LANG': 'C'})
|
2015-01-05 22:18:04 +08:00
|
|
|
ld_out = ld_cmd.stdout.read().decode()
|
2014-07-28 07:11:06 +08:00
|
|
|
ld_cmd.wait()
|
|
|
|
|
2014-11-11 13:27:12 +08:00
|
|
|
if not '-plugin' in ld_out:
|
|
|
|
return False
|
|
|
|
|
|
|
|
# check that the used emulations are supported.
|
|
|
|
emu_line = [l for l in ld_out.split('\n') if 'supported emulations' in l]
|
|
|
|
if len(emu_line) != 1:
|
|
|
|
return False
|
|
|
|
emu_line = emu_line[0]
|
|
|
|
fields = emu_line.split(':')
|
|
|
|
if len(fields) != 3:
|
|
|
|
return False
|
|
|
|
emulations = fields[2].split()
|
2015-03-20 02:23:31 +08:00
|
|
|
if 'elf_x86_64' not in emulations:
|
2014-11-11 13:27:12 +08:00
|
|
|
return False
|
2015-03-20 02:23:31 +08:00
|
|
|
if 'elf32ppc' in emulations:
|
|
|
|
config.available_features.add('ld_emu_elf32ppc')
|
2014-11-11 13:27:12 +08:00
|
|
|
|
2015-08-31 15:10:05 +08:00
|
|
|
ld_version = subprocess.Popen([config.gold_executable, '--version'], stdout = subprocess.PIPE, env={'LANG': 'C'})
|
2015-02-14 17:05:56 +08:00
|
|
|
if not 'GNU gold' in ld_version.stdout.read().decode():
|
2014-07-28 07:11:06 +08:00
|
|
|
return False
|
|
|
|
ld_version.wait()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
if have_ld_plugin_support():
|
|
|
|
config.available_features.add('ld_plugin')
|
|
|
|
|
2015-03-20 07:55:38 +08:00
|
|
|
def have_ld64_plugin_support():
|
2017-01-07 05:33:48 +08:00
|
|
|
if not config.llvm_tool_lto_build or config.ld64_executable == '':
|
2015-03-20 07:55:38 +08:00
|
|
|
return False
|
|
|
|
|
|
|
|
ld_cmd = subprocess.Popen([config.ld64_executable, '-v'], stderr = subprocess.PIPE)
|
|
|
|
ld_out = ld_cmd.stderr.read().decode()
|
|
|
|
ld_cmd.wait()
|
|
|
|
|
|
|
|
if 'ld64' not in ld_out or 'LTO' not in ld_out:
|
|
|
|
return False
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
if have_ld64_plugin_support():
|
|
|
|
config.available_features.add('ld64_plugin')
|
|
|
|
|
2017-09-17 02:46:21 +08:00
|
|
|
# Ask llvm-config about asserts and global-isel.
|
2017-09-19 06:26:48 +08:00
|
|
|
llvm_config.feature_config(
|
|
|
|
[('--assertion-mode', {'ON' : 'asserts'}),
|
|
|
|
('--has-global-isel', {'ON' : 'global-isel'})])
|
2013-07-12 07:36:57 +08:00
|
|
|
|
2013-08-21 13:02:12 +08:00
|
|
|
if 'darwin' == sys.platform:
|
|
|
|
try:
|
|
|
|
sysctl_cmd = subprocess.Popen(['sysctl', 'hw.optional.fma'],
|
|
|
|
stdout = subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
print("Could not exec sysctl")
|
2013-08-22 06:26:44 +08:00
|
|
|
result = sysctl_cmd.stdout.read().decode('ascii')
|
|
|
|
if -1 != result.find("hw.optional.fma: 1"):
|
2013-08-21 13:02:12 +08:00
|
|
|
config.available_features.add('fma3')
|
|
|
|
sysctl_cmd.wait()
|
|
|
|
|
2014-06-22 20:35:39 +08:00
|
|
|
# .debug_frame is not emitted for targeting Windows x64.
|
2014-12-17 17:55:15 +08:00
|
|
|
if not re.match(r'^x86_64.*-(mingw32|windows-gnu|win32)', config.target_triple):
|
2014-06-22 20:35:39 +08:00
|
|
|
config.available_features.add('debug_frame')
|
|
|
|
|
2016-05-24 05:34:12 +08:00
|
|
|
if config.have_libxar:
|
|
|
|
config.available_features.add('xar')
|
2017-06-07 08:22:52 +08:00
|
|
|
|
2017-07-27 09:11:53 +08:00
|
|
|
if config.llvm_libxml2_enabled == "1":
|
|
|
|
config.available_features.add('libxml2')
|