2016-11-03 18:06:31 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Copyright 2016 Google Inc.
|
|
|
|
#
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
2020-03-03 06:53:20 +00:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2016-11-03 18:06:31 +00:00
|
|
|
import subprocess
|
2017-03-13 16:25:33 +00:00
|
|
|
import sys
|
2016-11-03 18:06:31 +00:00
|
|
|
|
2017-03-13 16:25:33 +00:00
|
|
|
(sdk,) = sys.argv[1:]
|
|
|
|
|
2021-11-17 14:56:04 +00:00
|
|
|
print(subprocess.check_output(['xcrun', '--sdk', sdk, '--show-sdk-path']))
|