aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Chris Parsons <cparsons@google.com>2017-02-21 21:21:47 +0000
committerGravatar Irina Iancu <elenairina@google.com>2017-02-22 08:27:52 +0000
commit34f47c81fc82bc9c6bd5f24c212d31555fe96bc9 (patch)
tree304dc7176f5c05a30f796936692dfd83e2587cbd /tools
parent0722e44e36852abb22cb72b39c057ad3dc7477b5 (diff)
Further improve error handling of xcode_configure.bzl
- Print developer_dir when an error occurs during getting a specific xcode's SDK info - Increase process timeouts from 5 seconds to 30 seconds. (There are some preliminary reports that users on slower Macs may be reaching this timeout on occasion) -- PiperOrigin-RevId: 148135624 MOS_MIGRATED_REVID=148135624
Diffstat (limited to 'tools')
-rw-r--r--tools/osx/xcode_configure.bzl11
1 files changed, 6 insertions, 5 deletions
diff --git a/tools/osx/xcode_configure.bzl b/tools/osx/xcode_configure.bzl
index 16e4688adc..2e8c901a92 100644
--- a/tools/osx/xcode_configure.bzl
+++ b/tools/osx/xcode_configure.bzl
@@ -53,12 +53,13 @@ def _xcode_version_output(repository_ctx, name, version, aliases, developer_dir)
error_msg = ""
for alias in aliases:
decorated_aliases.append("'%s'" % alias)
- xcodebuild_result = repository_ctx.execute(["xcodebuild", "-version", "-sdk"], 5,
+ xcodebuild_result = repository_ctx.execute(["xcodebuild", "-version", "-sdk"], 30,
{"DEVELOPER_DIR": developer_dir})
if (xcodebuild_result.return_code != 0):
error_msg = (
- "Invoking xcodebuild failed, " +
+ "Invoking xcodebuild failed, developer dir: {devdir} ," +
"return code {code}, stderr: {err}, stdout: {out}").format(
+ devdir=developer_dir,
code=xcodebuild_result.return_code,
err=xcodebuild_result.stderr,
out=xcodebuild_result.stdout)
@@ -90,7 +91,7 @@ VERSION_CONFIG_STUB = "xcode_config(name = 'host_xcodes')"
def _darwin_build_file(repository_ctx):
"""Evaluates local system state to create xcode_config and xcode_version targets."""
- xcodebuild_result = repository_ctx.execute(["env", "-i", "xcodebuild", "-version"])
+ xcodebuild_result = repository_ctx.execute(["env", "-i", "xcodebuild", "-version"], 30)
# "xcodebuild -version" failing may be indicative of no versions of xcode
# installed, which is an acceptable machine configuration to have for using
# bazel. Thus no print warning should be emitted here.
@@ -106,7 +107,7 @@ def _darwin_build_file(repository_ctx):
xcodeloc_src_path = str(repository_ctx.path(Label(repository_ctx.attr.xcode_locator)))
xcrun_result = repository_ctx.execute(["env", "-i", "xcrun", "clang", "-fobjc-arc", "-framework",
"CoreServices", "-framework", "Foundation", "-o",
- "xcode-locator-bin", xcodeloc_src_path], 5)
+ "xcode-locator-bin", xcodeloc_src_path], 30)
if (xcrun_result.return_code != 0):
error_msg = (
@@ -118,7 +119,7 @@ def _darwin_build_file(repository_ctx):
print(error_msg)
return VERSION_CONFIG_STUB + "\n# Error: " + error_msg.replace("\n", " ") + "\n"
- xcode_locator_result = repository_ctx.execute(["./xcode-locator-bin", "-v"])
+ xcode_locator_result = repository_ctx.execute(["./xcode-locator-bin", "-v"], 30)
if (xcode_locator_result.return_code != 0):
error_msg = (
"Invoking xcode-locator failed, " +