From fe16c1ff14fa7442461a03eaa4af1becfa94ce1c Mon Sep 17 00:00:00 2001 From: Kuba Mracek Date: Fri, 18 Nov 2016 23:25:57 +0000 Subject: [PATCH] [lit] When setting SDKROOT on Darwin, use '--sdk macosx' to find the right SDK path. This will make sure that we find an actual path in case you have Command Line Tools installed. llvm-svn: 287403 --- llvm/utils/lit/lit/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/lit/lit/util.py b/llvm/utils/lit/lit/util.py index 609011b1972d..be37998c6f16 100644 --- a/llvm/utils/lit/lit/util.py +++ b/llvm/utils/lit/lit/util.py @@ -251,7 +251,7 @@ def usePlatformSdkOnDarwin(config, lit_config): # default system root path. if 'darwin' in config.target_triple: try: - cmd = subprocess.Popen(['xcrun', '--show-sdk-path'], + cmd = subprocess.Popen(['xcrun', '--show-sdk-path', '--sdk', 'macosx'], stdout=subprocess.PIPE, stderr=subprocess.PIPE) out, err = cmd.communicate() out = out.strip()