linux下arm平台Qt编译环境搭建与解析

一.概述:

     我们知道QTcreator。这仅仅是个IDE,他包含了一个编译器--qmake.这两者的关系与codeblocks和g++的关系一样,首先要明确这些。

     而我们在linux下搭建arm平台的QT编译环境,基本的是要使用适合arm的qmake。正如我们编译在arm上使用c++程序时要用arm-none-linux-gnueabi-g++一样。而qmake仅仅是我们使用的工具,自然不须要也不能换。所以我们仅仅要使用arm-none-linux-gnueabi-g++编译一个qmake就可以(主要是编译生成arm上适合使用库。qmake应该还是适合linux下使用的,否则也无法编译)。

二.环境:

    pc机:linux就可以,我用的是ubuntu。这些没什么影响

    arm:arm9。这个也没什么影响。仅仅是你的交叉编译器一定要相应你的arm平台

    交叉编译器:arm-none-linux-gnueabi-,编译器用适合自己的arm平台的。至于交叉编译器的使用,这里不做讲述了。

   QTcreator:QT4.8左右的,这个也无所谓。仅仅是配置略微不同,思路一样

    qmake:使用qt-everywhere-opensource-src-4.7.4.tar.gz生成。核心就是这一步。

三.准备

    1.安装交叉编译器,包含配置环境。arm-none-linux-gnueabi-g++可用应该就没有问题了,这里能够參考前面对交叉编译器安装的记录。

    2.下载qt--everywhere-opensource-src-4.7.4.tar.gz,百度搜吧。

    3.QTcreator安装,直接在ubuntusoftwarecenter安装就可以,自己网上下载适合版本号点击安装也可,非常easy。这里说明一下。你安装了QTcreator已经自带了qmake,它是编译linux(你自己的pc)平台程序的,你要用适合arm的qmake替换它,两者能够自己切换。

四.armqt库的编译生成

    1.解压。。

。。

。。

。。。。。

    2.进入qt-everywhere...........接下来有人说要改mkspecs/qws/linux-arm-g++/qmake.conf(当前文件夹下)。这是应为自己要用的交叉编译器是arm-none-linux-gnueabi-而不是

arm-linux-,事实上不须要,应为mkspecs/qws/下有linux-arm-gnueabi-g++能够相应我们要用的交叉编译器,我们使用它既可

   3.     ./configure -prefix /usr/local/qt-4.7.3-linux-arm-install -embedded arm -host-little-endian -no-cups -no-3dnow -nomake examples -nomake demos -nomake docs -xplatform /qws/linux-arm-g++    -prefix代表你的安装文件夹,-embedded代表安装嵌入式版本号的。最后的-xplatform指定编译器,如上步描写叙述的一样。

    4.上步中会有几次提示。第一次问你开源还是*****,总之选o就能够了。过一段时间还会提示你,选择yes既可,假设没有这两步的话就是有问题,就不要浪费几个小时去make了,又一次来过吧。假设成功,他会提示你运行make运行make install,还会告诉你安装在哪个文件夹。

     5.make。几个小时才干够。

     6.make install ,这样就算完毕了。你会再安装文件夹看到有bin,include,lib灯这些文件夹,跟gcc的文件夹几乎相同,跟编译完boost的文件夹也几乎相同。事实上道理都是一样的。

      7.须要的话你要给你的qmake改个名字(你的电脑安装qtcreator的时候已经有个qmake了,这是电脑版的),如armqmake,这样你就能够配置环境变量了。能够在随意文件夹运行你的armqmake,我没有做这里,自己不须要。

 

到这里。事实上你就能够使用qmake了:

         hello.cpp源代码:
         #include <QApplication>
         #include <QDebug>
         int main(int argc,char *argv[]) 
        {
            qDebug("Hello, welcome to Qt world!");
            return 0;
         }
  
  顺序运行下面操作:
  @1. 运行:qmake -project hello1.cpp
        生成 hello1.pro 工程文件
  @2. 运行:qmake hello1.pro
        生成 Makefile 文件 
  @3. 运行:make
        生成 hello.o, hello 文件 

 

五.配置qtcreator,这是为了开发方便

假设你已经安装好creator了。上面工具栏tool->option->左边build&run->qtversion,加入你的arm版的qmake(armqmake)。

还是这里,选tool chains加入你的交叉编译器。

选unconfigured project,不同版本号可能不同,有个不是这个名字,可是作用一样。代表你要用哪个qmake相应哪个编译器(对,两个编译器,g++跟qmake,linuxpc相应pc的,arm相应arm的)。然后相应就可以,有时候可能toolchain找不到你刚配置的交叉编译器,你关了重开option就该出来了。

 

 六.链接文件配置

问题:

1.导入qmake的时候可能会报错。我的是报错了,个人认为应该都报错。

QTcreater提示The default mkspec symlink is broken. - 穆 - 穆 的日记本   小浣熊


这须要进入mkspecs文件夹查看default指向哪里,正确的应该指向/qws/linux-arm-gnueabi-g++,(不清楚默认的是不是这个,我这里没有查看,由于出现上图的问题,我直接改了)。总之删除default,然后运行ln -s qws/linux-arm-gnueabi-g++ default就能够了。又一次配置qtcreator后发现正常了(option窗体要关闭再打开)。

七.常见编译问题总结

    1.

2011-10-29 15:58

error: main.o: Relocations in generic ELF (EM: 3)解决的方法

在编译arm版本号的qt程序时,出现错误error: main.o: Relocations in generic ELF (EM: 3)。由于開始我的程序是编译成了x86版的程序,然后我想编译到arm下运行,编译的时候出现了上述错误。

解决的方法:对工程clean一下,你再又一次编译应该就没错了。


2. undefined reference to 'QWSKeyboardHandler::

出现这个问题。是说这个类没找到,而你发现这个类的确是在头文件包含的,这可能是由于你的编译器还是用的linux版本号的,而这个类仅仅存在arm版本号。

解决的方法:qmakearm要配置对,另外也可能是上面问题的default有问题,更改就可以。

转载于:https://www.cnblogs.com/ldxsuanfa/p/10538830.html

Building on: linux-g++ (x86_64, CPU features: mmx sse sse2) Building for: linux-aarch64-gnu-g++ (arm64, CPU features: neon) Target compiler: gcc 6.3.1 Configuration: cross_compile use_gold_linker compile_examples enable_new_dtags largefile neon precompile_header shared rpath release c++11 c++14 concurrent dbus reduce_exports stl Build options: Mode ................................... release Optimize release build for size ........ no Building shared libraries .............. yes Using C standard ....................... C11 Using C++ standard ..................... C++14 Using ccache ........................... no Using gold linker ...................... yes Using new DTAGS ........................ yes Using precompiled headers .............. yes Using LTCG ............................. no Target compiler supports: NEON ................................. yes Build parts ............................ libs Qt modules and options: Qt Concurrent .......................... yes Qt D-Bus ............................... yes Qt D-Bus directly linked to libdbus .... no Qt Gui ................................. yes Qt Network ............................. yes Qt Sql ................................. yes Qt Testlib ............................. yes Qt Widgets ............................. yes Qt Xml ................................. yes Support enabled for: Using pkg-config ....................... yes udev ................................... no Using system zlib ...................... yes Qt Core: DoubleConversion ....................... yes Using system DoubleConversion ........ no GLib ................................... no iconv .................................. yes ICU .................................... no Tracing backend ........................ Logging backends: journald ............................. no syslog ............................... no slog2 ................................ no Using system PCRE2 ..................... no Qt Network: getifaddrs() ........................... yes IPv6 ifname ............................ yes libproxy ............................... no Linux AF_NETLINK ....................... yes OpenSSL ................................ yes Qt directly linked to OpenSSL ........ no OpenSSL 1.1 ............................ no DTLS ................................... yes SCTP ................................... no Use system proxies ..................... yes Qt Gui: Accessibility .......................... yes FreeType ............................... yes Using system FreeType ................ no HarfBuzz ............................... yes Using system HarfBuzz ................ no Fontconfig ............................. no Image formats: GIF .................................. yes ICO .................................. yes JPEG ................................. yes Using system libjpeg ............... yes PNG .................................. yes Using system libpng ................ no EGL .................................... no OpenVG ................................. no OpenGL: Desktop OpenGL ....................... no OpenGL ES 2.0 ........................ no OpenGL ES 3.0 ........................ no OpenGL ES 3.1 ........................ no OpenGL ES 3.2 ........................ no Vulkan ................................. no Session Management ..................... yes Features used by QPA backends: evdev .................................. yes libinput ............................... no INTEGRITY HID .......................... no mtdev .................................. no tslib .................................. no xkbcommon .............................. no X11 specific: XLib ................................. no EGL on X11 ........................... no QPA backends: DirectFB ............................... no EGLFS .................................. no LinuxFB ................................ yes VNC .................................... yes Mir client ............................. no Qt Sql: SQL item models ........................ yes Qt Widgets: GTK+ ................................... no Styles ................................. Fusion Windows Qt PrintSupport: CUPS ................................... no Qt Sql Drivers: DB2 (IBM) .............................. no InterBase .............................. no MySql .................................. no OCI (Oracle) ........................... no ODBC ................................... no PostgreSQL ............................. no SQLite2 ................................ no SQLite ................................. yes Using system provided SQLite ......... no TDS (Sybase) ........................... no Qt Testlib: Tester for item models ................. yes Qt SerialBus: Socket CAN ............................. yes Socket CAN FD .......................... yes Qt QML: QML network support .................... yes QML debugging and profiling support .... yes QML sequence object .................... yes QML list model ......................... yes QML XML http request ................... yes QML Locale ............................. yes QML delegate model ..................... yes Qt Quick: Direct3D 12 ............................ no AnimatedImage item ..................... yes Canvas item ............................ yes Support for Qt Quick Designer .......... yes Flipable item .......................... yes GridView item .......................... yes ListView item .......................... yes TableView item ......................... yes Path support ........................... yes PathView item .......................... yes Positioner items ....................... yes Repeater item .......................... yes ShaderEffect item ...................... yes Sprite item ............................ yes Qt Scxml: ECMAScript data model for QtScxml ...... yes Qt Gamepad: SDL2 ................................... no Qt 3D: Assimp ................................. yes System Assimp .......................... no Output Qt3D Job traces ................. no Output Qt3D GL traces .................. no Use SSE2 instructions .................. no Use AVX2 instructions .................. no Aspects: Render aspect ........................ yes Input aspect ......................... yes Logic aspect ......................... yes Animation aspect ..................... yes Extras aspect ........................ yes Qt 3D Renderers: OpenGL Renderer ........................ yes Qt 3D GeometryLoaders: Autodesk FBX ........................... no Qt Wayland Client ........................ no Qt Wayland Compositor .................... no Qt Bluetooth: BlueZ .................................. no BlueZ Low Energy ....................... no Linux Crypto API ....................... no WinRT Bluetooth API (desktop & UWP) .... no Qt Sensors: sensorfw ............................... no Qt Quick Controls 2: Styles ................................. Default Fusion Imagine Material Universal Qt Quick Templates 2: Hover support .......................... yes Multi-touch support .................... yes Qt Positioning: Gypsy GPS Daemon ....................... no WinRT Geolocation API .................. no Qt Location: Qt.labs.location experimental QML plugin . yes Geoservice plugins: OpenStreetMap ........................ yes HERE ................................. yes Esri ................................. yes Mapbox ............................... yes MapboxGL ............................. no Itemsoverlay ......................... yes QtXmlPatterns: XML schema support ..................... yes Qt Multimedia: ALSA ................................... no GStreamer 1.0 .......................... no GStreamer 0.10 ......................... no Video for Linux ........................ yes OpenAL ................................. no PulseAudio ............................. no Resource Policy (libresourceqt5) ....... no Windows Audio Services ................. no DirectShow ............................. no Windows Media Foundation ............... no Qt Tools: QDoc ................................... no Qt WebEngine: Embedded build ......................... yes Pepper Plugins ......................... no Printing and PDF ....................... no Proprietary Codecs ..................... no Spellchecker ........................... yes Native Spellchecker .................... no WebRTC ................................. no Use System Ninja ....................... no Geolocation ............................ yes WebChannel support ..................... yes Use v8 snapshot ........................ yes Kerberos Authentication ................ no Building v8 snapshot supported ......... yes Use ALSA ............................... no Use PulseAudio ......................... no Optional system libraries used: re2 .................................. no icu .................................. no libwebp, libwebpmux and libwebpdemux . no opus ................................. no ffmpeg ............................... no libvpx ............................... no snappy ............................... no glib ................................. no zlib ................................. yes minizip .............................. no libevent ............................. no jsoncpp .............................. no protobuf ............................. no libxml2 and libxslt .................. no lcms2 ................................ no png .................................. no JPEG ................................. no harfbuzz ............................. no freetype ............................. no x11 .................................. no Required system libraries: fontconfig ........................... no dbus ................................. no nss .................................. no khr .................................. no glibc ................................ yes Required system libraries for qpa-xcb: libdrm ............................... no xcomposite ........................... no xcursor .............................. no xi ................................... no xrandr ............................... no xtst ................................. no Note: Also available for Linux: linux-clang linux-icc
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值