Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cc/private/toolchain/windows_cc_configure.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -471,7 +471,7 @@ def _get_clang_version(repository_ctx, clang_cl):
auto_configure_fail("Failed to get clang version by running \"%s -v\"" % clang_cl)

# Stderr should look like "clang version X.X.X ..."
return result.stderr.strip().split(" ")[2]
return result.stderr.splitlines()[0].split(" ")[2]

def _get_msys_mingw_vars(repository_ctx):
"""Get the variables we need to populate the msys/mingw toolchains."""
Expand Down