Prune the feature "tls". No one is using it since TLS is enabled for Cygwin.

llvm-svn: 256457
This commit is contained in:
NAKAMURA Takumi 2015-12-27 06:14:33 +00:00
parent 334676355a
commit c86e9b79b8
2 changed files with 0 additions and 8 deletions

View File

@ -422,10 +422,6 @@ if not re.match(r'.*-(cygwin)$', config.target_triple):
if platform.system() not in ['Windows']:
config.available_features.add('can-remove-opened-file')
# Not set for targeting tls-incapable targets.
if not re.match(r'.*-cygwin$', config.target_triple):
config.available_features.add('tls')
# Returns set of available features, registered-target(s) and asserts.
def get_llvm_config_props():
set_of_features = set()

View File

@ -373,10 +373,6 @@ if config.target_triple:
if config.host_triple == config.target_triple:
config.available_features.add("native")
# Not set for targeting tls-incapable targets.
if not re.match(r'.*-cygwin$', config.target_triple):
config.available_features.add('tls')
import subprocess
def have_ld_plugin_support():