【问题标题】:Qt has not been ported to this OSQt 尚未移植到此操作系统
【发布时间】:2016-02-16 17:31:40
【问题描述】:

我正在尝试在 Eclipse 中使用 Cross ARM GCC 编译我的 c++ 项目。

我安装了GNU ARM Eclipse Plug-ins(如here 所述),通过运行sudo apt-get install libqt4-dev 安装了libqt4-dev,并将Qt 库包含到我的项目中:

/usr/include/qt4
/usr/include/qt4/Qt
/usr/include/qt4/QtCore
/usr/include/qt4/QtGui

(Project > Properties > C/C++ Build > Settings > Cross ARM C++ Compiler > Includes)

和:

QtCore
QtGui

(Project > Properties > C/C++ Build > Settings > Cross ARM C++ Linker > Libraries)

运行qmake 成功并创建Makefile

但我无法构建我的项目。

这是我的代码(在默认编译器下使用make all 编译和运行良好,而不是Cross ARM GCC):

ma​​in.cpp

#include "mainwindow.h"
#include <QApplication>

int main(int argc, char *argv[])
{
    QApplication app(argc, argv);

    MainWindow mainWindow;
    mainWindow.setGeometry(0,0,mainWindow.getButtonWidth(),mainWindow.getButtonHeight()*mainWindow.getButtonsNum());
    mainWindow.show();
    return app.exec();
}

ma​​inwindow.h

#ifndef MAINWINDOW_H
#define MAINWINDOW_H

#include <QMainWindow>
#include <QPushButton>

namespace Ui {
    class MainWindow;
}

class MainWindow : public QMainWindow
{
    Q_OBJECT
public:
    explicit MainWindow(QWidget *parent = 0);
    int getButtonWidth();
    int getButtonHeight();
    int getButtonsNum();
    ~MainWindow(){}
private:
    QPushButton *button1, *button2, *button3, *button4;
    const int ButtonWidth = 200;
    const int ButtonHeight = 50;
    const int ButtonsNum = 4;
};
#endif // MAINWINDOW_H

ma​​inwindow.cpp

#include "mainwindow.h"
#include <QCoreApplication>

MainWindow::MainWindow(QWidget *parent)
    : QMainWindow(parent)
{
    button1 = new QPushButton("Button1", this);
    button2 = new QPushButton("Button2", this);
    button3 = new QPushButton("Button3", this);
    button4 = new QPushButton("Button4", this);

    button1->setGeometry(QRect(QPoint(0, ButtonHeight*0), QSize(ButtonWidth, ButtonHeight)));
    button2->setGeometry(QRect(QPoint(0, ButtonHeight*1), QSize(ButtonWidth, ButtonHeight)));
    button3->setGeometry(QRect(QPoint(0, ButtonHeight*2), QSize(ButtonWidth, ButtonHeight)));
    button4->setGeometry(QRect(QPoint(0, ButtonHeight*3), QSize(ButtonWidth, ButtonHeight)));
}

int MainWindow::getButtonWidth()
{
    return ButtonWidth;
}

int MainWindow::getButtonHeight()
{
    return ButtonHeight;
}

int MainWindow::getButtonsNum()
{
    return ButtonsNum;
}

我在./src中的文件:

  • main.cpp
  • 主窗口.cpp
  • 主窗口.h
  • proConfig.pro

这里是 proConfig.pro

QT       += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets

TARGET = proConfig
TEMPLATE = app

SOURCES +=  main.cpp \
            mainwindow.cpp

HEADERS  += mainwindow.h

我在eclipse中点击Build All,我得到:

16:56:22 **** Incremental Build of configuration Release for project TestProject ****
make all 
Building file: ../src/main.cpp
Invoking: Cross ARM C++ Compiler
arm-none-eabi-g++ -mcpu=cortex-m3 -mthumb -O2  -g -I/usr/include/qt4 -I/usr/include/qt4/Qt -I/usr/include/qt4/QtCore -I/usr/include/qt4/QtGui -std=gnu++11 -fabi-version=0 -MMD -MP -MF"src/main.d" -MT"src/main.o" -c -o "src/main.o" "../src/main.cpp"
In file included from /usr/include/qt4/QtCore/qnamespace.h:45:0,
                 from /usr/include/qt4/QtCore/qobjectdefs.h:45,
                 from /usr/include/qt4/QtGui/qwindowdefs.h:45,
                 from /usr/include/qt4/QtGui/qwidget.h:46,
                 from /usr/include/qt4/QtGui/qmainwindow.h:45,
                 from /usr/include/qt4/QtGui/QMainWindow:1,
                 from ../src/mainwindow.h:4,
                 from ../src/main.cpp:14:
/usr/include/qt4/QtCore/qglobal.h:268:4: error: #error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com"
 #  error "Qt has not been ported to this OS - talk to qt-bugs@trolltech.com"
    ^
make: *** [src/main.o] Error 1

16:56:23 Build Finished (took 469ms)

【问题讨论】:

    标签: c++ eclipse qt ubuntu


    【解决方案1】:

    我正在尝试在 Eclipse 中使用 Cross ARM GCC 编译我的 c++ 项目。

    我安装了GNU ARM Eclipse Plug-ins(如此处所述),通过运行sudo apt-get install libqt4-dev安装了libqt4-dev

    libqt4-dev 的此副本适用于您的主机 x86/x64 CPU。您不能使用它为您的 ARM CPU 进行交叉编译。

    使用您的 Cross ARM GCC 编译器自己构建 Qt。例如,请参阅https://forum.qt.io/topic/26540/how-can-i-cross-compile-qt-5-0

    顺便说一句,Qt 4 已经很老了。 2015 年 12 月之后将不再受支持。我强烈建议您改用 Qt 5。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2015-06-17
      • 2011-11-08
      • 2011-08-30
      • 2010-09-11
      • 2013-03-12
      • 2011-03-26
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多