LINUX.ORG.RU

qt.qpa.plugin: Could not find the Qt platform plugin «xcb» in "" (статичиская сборка)

 , ,


0

3

Всем привет! При запуске приложения на Qt (static build) выводит ошибку:

QFactoryLoader::QFactoryLoader() ignoring "org.qt-project.Qt.QPA.QPlatformIntegrationFactoryInterface.5.3" since plugins are disabled in static builds
qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in ""
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.

Если добавить в qtimportplugins:

Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)

То будет undefined reference:

/home/continue/qt5/qtbase/src/plugins/platforms/xcb/qxcbmain.cpp:56: undefined reference to `QXcbIntegration::QXcbIntegration(QStringList const&, int&, char**)'

хотя qxcb линкуется в проект. Как можно решить?

# testcase.pro:

QT += core gui
QTPLUGIN.platforms = qminimal qxcb
CONFIG -= import_plugins
CONFIG += static
SOURCES += main.cpp
// main.cpp

#include <QCoreApplication>
#include <QDebug>

#include <QtPlugin>

Q_IMPORT_PLUGIN(QXcbIntegrationPlugin)

int main(int argc, char **argv)
{
    QCoreApplication app(argc, argv);
    qDebug() << "Does something!";
    return app.exec();
}

Вот на таком примере тестовом эта ошибка есть? Если нету, смотри строку линковки и делай аналогично в своём проекте.

EXL ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.