Qt串口程序在另一个系统上运行时崩溃

Posted

技术标签:

【中文标题】Qt串口程序在另一个系统上运行时崩溃【英文标题】:Qt serial port program crashes when run on another system 【发布时间】:2016-02-11 15:37:44 【问题描述】:

我在 Windows 10 PC 上修改了这段代码,它编译并运行时没有崩溃。

#include <QtSerialPort/QSerialPort>

#include <QTextStream>
#include <QCoreApplication>
#include <QFile>
#include <QStringList>

QT_USE_NAMESPACE

int main(int argc, char *argv[])

    QCoreApplication coreApplication(argc, argv);
    int argumentCount = QCoreApplication::arguments().size();
    QStringList argumentList = QCoreApplication::arguments();

    QTextStream standardOutput(stdout);

    if (argumentCount == 1) 
        standardOutput << QObject::tr("Usage: %1 <serialportname>     [baudrate]").arg(argumentList.first()) << endl;
        return 1;
    

    QSerialPort serialPort;
    QString serialPortName = argumentList.at(1);
    serialPort.setPortName(serialPortName);

    int serialPortBaudRate = (argumentCount > 2) ? argumentList.at(2).toInt() : QSerialPort::Baud9600;
    serialPort.setBaudRate(serialPortBaudRate);

    if (!serialPort.open(QIODevice::WriteOnly)) 
        standardOutput << QObject::tr("Failed to open port %1, error:     %2").arg(serialPortName).arg(serialPort.errorString()) << endl;
        return 1;
    

    QFile dataFile("C:\\SerialCommand.dat");
    if (!dataFile.open(QIODevice::ReadOnly)) 
        standardOutput << QObject::tr("Failed to open file for reading") <<     endl;
        return 1;
    

    QByteArray writeData(dataFile.readAll());
    dataFile.close();

    if (writeData.isEmpty()) 
        standardOutput << QObject::tr("Either no data was currently available on the standard input for reading, or an error occurred for port %1, error: %2").arg(serialPortName).arg(serialPort.errorString()) << endl;
        return 1;
    

    qint64 bytesWritten = serialPort.write(writeData);

    if (bytesWritten == -1) 
        standardOutput << QObject::tr("Failed to write the data to port %1, error: %2").arg(serialPortName).arg(serialPort.errorString()) << endl;
        return 1;
     else if (bytesWritten != writeData.size()) 
        standardOutput << QObject::tr("Failed to write all the data to port %1, error: %2").arg(serialPortName).arg(serialPort.errorString()) << endl;
        return 1;
     else if (!serialPort.waitForBytesWritten(5000)) 
        standardOutput << QObject::tr("Operation timed out or an error occurred for port %1, error: %2").arg(serialPortName).arg(serialPort.errorString()) << endl;
        return 1;
    

    standardOutput << QObject::tr("Data successfully sent to port %1").arg(serialPortName) << endl;

    printf("\n\ntest");

    return 0;

我将 Qt 设置为发布模式,并使用以下 .dll 文件打包应用程序:

    msvcp120d.dll msvcr120d.dll Qt5Core.dll Qt5Cored.dll Qt5SerialPort.dll Qt5SerialPortd.dll Qt5Widgets.dll qwindows.dll

当我在另一个系统(也是 Windows 10)上运行应用程序时,程序立即崩溃 - 是的,我确实将 SerialCommand.dat 移动到了 C 驱动器上的正确位置。有什么想法吗?

【问题讨论】:

1 您不得重新分发 CRT 的调试版本。这些是 Visual Studio 的一部分。您可能也不应该重新分发 Qt 的调试二进制文件。 2“程序崩溃”是什么意思?这是一个相当模糊的描述。它是否显示对话框?如果是这样,它说明了什么?还是立即终止? 程序立即终止,我可以尝试删除 ddl,但这真的会有所作为吗?顺便说一句,当我说立即终止时,我的意思是对话框打开,但我收到消息说“USBCommunication6 已停止工作”。 (是的,我最初称这个程序为 USBCommunication;我只是懒得改名字)@IInspectable “这真的会有所作为吗?” - 是的。重新分发 Visual Studio 附带的 CRT 调试版本是不合法的。这也意味着您正在部署应用程序的调试版本。没有理由发布应用程序的调试版本。构建发布配置。顾名思义,这是为了向用户发布。 【参考方案1】:

您正在打包 dll 的调试版本(以 d 结尾)而不是发布版本。

阅读Qt deployment docs,尤其是最后一部分(从“应用程序依赖”到结尾)。

dependency walker 有助于找到实际的依赖关系,理论上windeployqt 应该自动创建包含您需要的所有文件的发布目录。

另请参阅此other question,但它适用于使用 QML 的应用程序,因此它比您的情况更复杂。

【讨论】:

以上是关于Qt串口程序在另一个系统上运行时崩溃的主要内容,如果未能解决你的问题,请参考以下文章

如何在另一台安装了 qt 的计算机(linux)上运行 qt 程序?

我在用STM32串口DMA接收数据时,为啥在接收过程中,我的程序停止运行了,接收完成后又开始运行,求解?

Qt Creator 在尝试运行 OpenCV 程序时崩溃。 [ntdll.dll 崩溃]

使用 Qt 的程序,OpenCV 从 VS 启动时运行良好,但在使用 OpenCV 功能时运行可执行文件通常会崩溃

Ubuntu16.04下写的Qt程序,调试时没问题,运行时偶现崩溃 (需要在运行时生成core dump文件,QMAKE_CC += -g)

Popen 崩溃 Qt 调试器