blob: be5b687e039074a3a8b83058654194380869651d [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
Martin Vejdarskibeaaf472020-03-03 13:53:20 +07008from __future__ import print_function
9
Mike Klein7d302882016-11-03 14:06:31 -040010import subprocess
Mike Klein7a5e0f32017-03-13 09:25:33 -070011import sys
Mike Klein7d302882016-11-03 14:06:31 -040012
Mike Klein7a5e0f32017-03-13 09:25:33 -070013(sdk,) = sys.argv[1:]
14
Martin Vejdarskibeaaf472020-03-03 13:53:20 +070015print(subprocess.check_output(['xcrun', '--sdk', sdk, '--show-sdk-path']))