forked from OSchip/llvm-project
Prune the feature "tls". No one is using it since TLS is enabled for Cygwin.
llvm-svn: 256457
This commit is contained in:
parent
334676355a
commit
c86e9b79b8
|
@ -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()
|
||||
|
|
|
@ -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():
|
||||
|
|
Loading…
Reference in New Issue