diff options
author | Alexander Potapenko <glider@google.com> | 2014-06-10 14:22:00 +0000 |
---|---|---|
committer | Alexander Potapenko <glider@google.com> | 2014-06-10 14:22:00 +0000 |
commit | 14f8ac04e3ecfe097653bda84b8cf4777fb91f17 (patch) | |
tree | 2aa5300f46ae590f2b88f582e8fc4a7a0287f0db /llvm/utils/lit | |
parent | 9cc3ebdd3b846b34ded9c6fb81f997b091168ef6 (diff) | |
download | bcm5719-llvm-14f8ac04e3ecfe097653bda84b8cf4777fb91f17.tar.gz bcm5719-llvm-14f8ac04e3ecfe097653bda84b8cf4777fb91f17.zip |
Add detection of OS X relocatable SDK to compiler-rt as a lit.util function
Clang's lit cfg already detects the currently selected SDK via
"xcrun --show-sdk-path". The same thing should be done for compiler-rt tests,
to make them work on recent OS X versions. Instead of duplicating the detection
code, this patch extracts the detection function into a lit.util method.
Patch by Kuba Brecka (kuba.brecka@gmail.com),
reviewed at http://reviews.llvm.org/D4072
llvm-svn: 210534
Diffstat (limited to 'llvm/utils/lit')
-rw-r--r-- | llvm/utils/lit/lit/util.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/llvm/utils/lit/lit/util.py b/llvm/utils/lit/lit/util.py index 2b1010c1870..72a8b4848e0 100644 --- a/llvm/utils/lit/lit/util.py +++ b/llvm/utils/lit/lit/util.py @@ -167,3 +167,20 @@ def executeCommand(command, cwd=None, env=None): err = str(err) return out, err, exitCode + +def usePlatformSdkOnDarwin(config, lit_config): + # On Darwin, support relocatable SDKs by providing Clang with a + # default system root path. + if 'darwin' in config.target_triple: + try: + cmd = subprocess.Popen(['xcrun', '--show-sdk-path'], + stdout=subprocess.PIPE, stderr=subprocess.PIPE) + out, err = cmd.communicate() + out = out.strip() + res = cmd.wait() + except OSError: + res = -1 + if res == 0 and out: + sdk_path = out + lit_config.note('using SDKROOT: %r' % sdk_path) + config.environment['SDKROOT'] = sdk_path |