diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-04-18 22:02:23 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-04-19 00:01:08 +0200 |
commit | c4a267215c10647ff281e9e629faa0a8a201f4b4 (patch) | |
tree | eebab5a96d47bf9ebf71ec42279c3e1a120dc2ef /solenv/gcc-wrappers | |
parent | 41392516ca0fc099c383c4319923b895ecc16be6 (diff) |
tdf#82430: gcc-wrappers: command line *must* start with a space
Yes, you read that right, if there's no space in front of the first
argument, cl.exe will *ignore* it.
Change-Id: I73d9bf026705538e53b5d91091a4c96eb15739b2
Diffstat (limited to 'solenv/gcc-wrappers')
-rw-r--r-- | solenv/gcc-wrappers/wrapper.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/solenv/gcc-wrappers/wrapper.cxx b/solenv/gcc-wrappers/wrapper.cxx index 9dacb26116c1..e68603c14013 100644 --- a/solenv/gcc-wrappers/wrapper.cxx +++ b/solenv/gcc-wrappers/wrapper.cxx @@ -186,6 +186,11 @@ int startprocess(string command, string args) { command=command.substr(0,pos+strlen("ccache"))+".exe"; } + if (args[0] != ' ') + { + args.insert(0, " "); // lpCommandLine *must* start with space! + } + //cerr << "CMD= " << command << " " << args << endl; // Commandline may be modified by CreateProcess |