我想使用QProcess从Qt应用程序编译c ++文件。但它不起作用,我没有看到编译器生成的任何.o或.exe文件。
这就是我在做什么 -
QProcess *process = new QProcess(this);
QString program = "g++";
QStringList arguments;
//fileName is fetched from QFileDialog
arguments << fileName << "-o" << QFileInfo(fileName).path() + QFileInfo(fileName).baseName() + ".exe";
errorFilename = QFileInfo(fileName).baseName() + "_error.txt";
process->setStandardOutputFile(errorFilename);
connect(process, SIGNAL(finished(int)), this, SLOT(compiled()));
process->start(program, arguments);
请告诉我这段代码有什么问题。我正在开发Windows 7。
答案 0 :(得分:1)
请注意,错误不会转到stdout
,而会转到stderr
。尝试使用:
process->setStandardErrorFile(errorFilename);
此外QFileInfo::path()
末尾没有路径分隔符,因此在将路径与基本文件名连接时,您需要添加一个:
QFileInfo finfo(fileName);
arguments << fileName << "-o" << QFileInfo( QDir(finfo.path()), finfo.baseName() + ".exe").filePath();