blob: 789ae9f9a5709810b8305d637550e5d6c76f409c [file] [log] [blame]
Mike Klein7d302882016-11-03 14:06:31 -04001#!/usr/bin/env python
2#
3# Copyright 2016 Google Inc.
4#
5# Use of this source code is governed by a BSD-style license that can be
6# found in the LICENSE file.
7
8import subprocess
Mike Klein7a5e0f32017-03-13 09:25:33 -07009import sys
Mike Klein7d302882016-11-03 14:06:31 -040010
Mike Klein7a5e0f32017-03-13 09:25:33 -070011(sdk,) = sys.argv[1:]
12
13print subprocess.check_output(['xcrun', '--sdk', sdk, '--show-sdk-path'])