With help from chapuni on IRC, I think this is right now. =] The issue
authorChandler Carruth <chandlerc@gmail.com>
Wed, 31 Jul 2013 11:14:13 +0000 (11:14 +0000)
committerChandler Carruth <chandlerc@gmail.com>
Wed, 31 Jul 2013 11:14:13 +0000 (11:14 +0000)
commitcc512ed678bef6248e2b23331f1276f9385b1ca5
tree88e25c30626dbfa7ef841d7eb2a080e8e19f9d34
parent8cf38db1994ad6abac577bc3166e59dcbf6ad752
With help from chapuni on IRC, I think this is right now. =] The issue
is that the command is quoted differently from the arguments. The
command has '\' and the argument has '\\'. This is made unclear because
FileCheck escapes the single matched '\' when it prints the contents of
the variable, thus fooling me into thinking it had matched '\\' as
intended. The solution is to bind the gcc_install variable in the
argument list rather than out of the command. To do so we also have to
be a bit more careful so that we don't get stray other things into the
'.*' regex.

Also, because of the argument difference, '\\\\' is the correct
formulation before crtbegin, go back to that.

llvm-svn: 187489
clang/test/Driver/cross-linux.c