gpt4 book ai didi

c++ - 无法使用 QProcess 启动 g++

转载 作者:行者123 更新时间:2023-11-28 07:06:09 25 4
gpt4 key购买 nike

我想使用 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 上工作。

最佳答案

请记住,错误不会转到 stdout,它们会转到 stderr。尝试使用:

process->setStandardErrorFile(errorFilename);

此外,QFileInfo::path() 末尾没有路径分隔符,因此在将路径与基本文件名连接时需要添加一个:

QFileInfo finfo(fileName);

arguments << fileName << "-o" << QFileInfo( QDir(finfo.path()), finfo.baseName() + ".exe").filePath();

关于c++ - 无法使用 QProcess 启动 g++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21722711/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com