]> git.proxmox.com Git - rustc.git/blob - src/libcompiler_builtins/compiler-rt/test/cfi/cross-dso/lit.local.cfg
New upstream version 1.25.0+dfsg1
[rustc.git] / src / libcompiler_builtins / compiler-rt / test / cfi / cross-dso / lit.local.cfg
1 def getRoot(config):
2 if not config.parent:
3 return config
4 return getRoot(config.parent)
5
6 root = getRoot(config)
7
8 if root.host_os not in ['Linux']:
9 config.unsupported = True
10
11 # Android O (API level 26) has support for cross-dso cfi in libdl.so.
12 if config.android and 'android-26' not in config.available_features:
13 config.unsupported = True