summaryrefslogtreecommitdiffstats
path: root/Source/cmcldeps.cxx
diff options
context:
space:
mode:
authorPeter Kuemmel <syntheticpp@gmx.net>2012-06-15 16:56:34 (GMT)
committerPeter Kuemmel <syntheticpp@gmx.net>2012-06-15 16:56:34 (GMT)
commitf1abdce1cc7df4ace0a15c9fb0c62d975f92fa3a (patch)
tree69bcb64a753b98071a3b31a44a75976deb735781 /Source/cmcldeps.cxx
parent2de963d9966f7ffbdbd75f6d55661ab635cfb3d7 (diff)
downloadCMake-f1abdce1cc7df4ace0a15c9fb0c62d975f92fa3a.zip
CMake-f1abdce1cc7df4ace0a15c9fb0c62d975f92fa3a.tar.gz
CMake-f1abdce1cc7df4ace0a15c9fb0c62d975f92fa3a.tar.bz2
Ninja: some bytes of the rc files couldn't be piped correctly
Write to a file again but generate it in the object dir
Diffstat (limited to 'Source/cmcldeps.cxx')
-rw-r--r--Source/cmcldeps.cxx27
1 files changed, 18 insertions, 9 deletions
diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx
index 85fed5d..962acdb 100644
--- a/Source/cmcldeps.cxx
+++ b/Source/cmcldeps.cxx
@@ -58,7 +58,7 @@ struct Subprocess {
private:
Subprocess();
- bool Start(struct SubprocessSet* set, const string& command);
+ bool Start(struct SubprocessSet* set, const string& command, const string& dir);
void OnPipeReady();
string buf_;
@@ -89,7 +89,7 @@ struct SubprocessSet {
SubprocessSet();
~SubprocessSet();
- Subprocess* Add(const string& command);
+ Subprocess* Add(const string& command, const string& dir);
bool DoWork();
Subprocess* NextFinished();
void Clear();
@@ -244,7 +244,8 @@ HANDLE Subprocess::SetupPipe(HANDLE ioport) {
return output_write_child;
}
-bool Subprocess::Start(SubprocessSet* set, const string& command) {
+bool Subprocess::Start(SubprocessSet* set, const string& command,
+ const string& dir) {
HANDLE child_pipe = SetupPipe(set->ioport_);
SECURITY_ATTRIBUTES security_attributes;
@@ -273,7 +274,7 @@ bool Subprocess::Start(SubprocessSet* set, const string& command) {
// lines greater than 8,191 chars.
if (!CreateProcessA(NULL, (char*)command.c_str(), NULL, NULL,
/* inherit handles */ TRUE, CREATE_NEW_PROCESS_GROUP,
- NULL, NULL,
+ NULL, (dir.empty() ? NULL : dir.c_str()),
&startup_info, &process_info)) {
DWORD error = GetLastError();
if (error == ERROR_FILE_NOT_FOUND) {
@@ -388,9 +389,9 @@ BOOL WINAPI SubprocessSet::NotifyInterrupted(DWORD dwCtrlType) {
return FALSE;
}
-Subprocess *SubprocessSet::Add(const string& command) {
+Subprocess *SubprocessSet::Add(const string& command, const string& dir) {
Subprocess *subprocess = new Subprocess;
- if (!subprocess->Start(this, command)) {
+ if (!subprocess->Start(this, command, dir)) {
delete subprocess;
return 0;
}
@@ -615,10 +616,11 @@ static int process( const string& srcfilename,
const string& objfile,
const string& prefix,
const string& cmd,
+ const string& dir = "",
bool quiet = false) {
SubprocessSet subprocs;
- Subprocess* subproc = subprocs.Add(cmd);
+ Subprocess* subproc = subprocs.Add(cmd, dir);
if(!subproc)
return 2;
@@ -700,11 +702,18 @@ int main() {
// rc: src\x\x.rc -> cl: /Tc src\x\x.rc
clrest = replace(clrest, srcfile, "/Tc " + srcfile);
- cl = "\"" + cl + "\" /EP /DRC_INVOKED ";
+ cl = "\"" + cl + "\" /P /DRC_INVOKED ";
+
+ // call cl in object dir so the .i is generated there
+ string objdir;
+ std::string::size_type pos = objfile.rfind("\\");
+ if (pos != string::npos) {
+ objdir = objfile.substr(0, pos);
+ }
// extract dependencies with cl.exe
process(srcfilename, dfile, objfile,
- prefix, cl + nol + show + clrest, true);
+ prefix, cl + nol + show + clrest, objdir, true);
// compile rc file with rc.exe
return process(srcfilename, "" , objfile, prefix, binpath + " " + rest);