1

我正在尝试为 Beaglebord (ARM) 编译 Qt 一段时间并运行一些基本的 Hello Word GUI 应用程序。我已经为交叉编译构建了 Qt,其中包含下面提到的一些错误和警告,并将我的 Qt Creator 配置为与我的交叉编译工具链一起使用。我创建了一个简单的 Qt GUI 项目,但是当我尝试构建我的项目时,我收到了这些错误:

:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtGui.so when searching for -lQtGui
:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtGui.so when searching for -lQtGui
:-1: error: cannot find -lQtGui
:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtNetwork.so when searching for -lQtNetwork
:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtNetwork.so when searching for -lQtNetwork
:-1: error: cannot find -lQtNetwork
:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtCore.so when searching for -lQtCore
:-1: error: skipping incompatible /usr/local/Trolltech/QtEmbedded-4.7.4-generic/lib/libQtCore.so when searching for -lQtCore
:-1: error: cannot find -lQtCore
:-1: error: collect2: ld returned 1 exit status

此外,列表项 Qt Creator->Options->Qt4 Qt Versions 列表上有一个黄色警告图标:

在此处输入图像描述

我正在使用 Ubuntu 10.10 x86 和最新的 Angstrom 工具链。我已经使用 Angstrom 在线构建器来构建我的工具链。我已经用最新的离线 Qt SDK v4.7.4 安装了我的 Qt Creator。之后我下载了 Qt 源代码 qt-everywhere-opensource-src-4.7.4.zip 并配置如下:

将 qws/linux-arm-gnueabi-g++/qmake.conf 更改为:

    #
    # qmake configuration for building with arm-none-linux-gnueabi-g++
    #

    include(../../common/g++.conf)
    include(../../common/linux.conf)
    include(../../common/qws.conf)

    # modifications to g++.conf
    QMAKE_CC                = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-gcc
    QMAKE_CXX               = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-g++
    QMAKE_LINK              = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-g++
    QMAKE_LINK_SHLIB        = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-g++

    # modifications to linux.conf
    QMAKE_AR                = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-ar cqs
    QMAKE_OBJCOPY           = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-objcopy
    QMAKE_STRIP             = /home/olcay/armx86/bin/arm-angstrom-linux-gnueabi-strip

    load(qt_config)

使用以下设置配置 Qt:

./configure
    -embedded armv7
    -little-endian
    -xplatform qws/linux-arm-gnueabi-g++
    -qt-gfx-linuxfb
    -qt-gfx-vnc
    -largefile
    -no-accessibility
    -no-qt3support
    -no-sse2
    -qt-libpng
    -qt-libjpeg
    -no-cups
    -no-libtiff
    -nowebkit
    -qt-zlib
    -nomake examples
    -nomake demos
    -opensource
    -confirm-license
    -no-fast
    -multimedia
    -optimized-qmake

是我的配置脚本的控制台输出。

正如您在配置输出中看到的那样,只有树警告:

for /home/olcay/qt-everywhere-opensource-src-4.7.4/src/3rdparty/webkit/WebKit/qt/tests/hybridPixmap/hybridPixmap.pro
WARNING: Failure to find: hybridPixmap.cpp
for /home/olcay/qt-everywhere-opensource-src-4.7.4/src/3rdparty/webkit/WebKit/qt/tests/benchmarks/loading/loading.pro
WARNING: Failure to find: loading.cpp
for /home/olcay/qt-everywhere-opensource-src-4.7.4/src/3rdparty/webkit/WebKit/qt/tests/benchmarks/painting/painting.pro
WARNING: Failure to find: painting.cpp

还有一个关于浮点格式的警告:

    The system floating point format could not be detected.
    This may cause data to be generated in a wrong format

请帮我找出问题所在。提前致谢。

更新 1

如果您以前阅读过这个问题,我已经更改了我的配置并重新编译并安装了 Qt,并根据新配置和新结果更新了我的问题。它让我摆脱了 make install 错误,但主要问题仍未解决。

更新 2

我注意到 Qt Creator为linux-g++-32调用qmake而不是qws/linux-arm-gnueabi-g++所以我用所需的设置更改了 linux-g++-32/qmake.conf。现在我可以构建我的应用程序了。但是我还没有测试应用程序二进制文件,因为我现在在家。我将测试我的申请并明天在这里发布结果。

4

0 回答 0