Navigation

    Qt Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Search
    1. Home
    2. Tags
    3. configure
    Log in to post

    • UNSOLVED Qt6 MSVC2019 Build Attempt: Cmake Error at .../QtProcessConfigureArgs.cmake:788 (Exit Code 1)
      Installation and Deployment • cmake debug configure building qt qt6 • • oblivioncth  

      1
      0
      Votes
      1
      Posts
      77
      Views

      No one has replied

    • SOLVED Can't build Qt 6.0.0 due to MAX_PATH with shallow directory depth
      Installation and Deployment • configure qt6 build qt configure tool path limit • • oblivioncth  

      4
      0
      Votes
      4
      Posts
      116
      Views

      @oblivioncth I can confirm that this was fixed in 6.0.1
    • UNSOLVED Libjpeg conflict while building qt
      Mobile and Embedded • embedded linux configure building qt ubuntu 18.04 libjpeg • • Ucn_  

      12
      0
      Votes
      12
      Posts
      105
      Views

      So everything looks correct... How are you loading your image in your application ?
    • UNSOLVED WebAssembly - Project ERROR: Unknown module(s) in QT: quick quickcontrols2
      Installation and Deployment • qmake configure quick controls qtwebassemlby • • Oshio  

      10
      0
      Votes
      10
      Posts
      322
      Views

      @jsulm Uhmm now I'm starting to understand why @sierdzio told me this is not easy. I will do some google search on this subject, thanks for guidance.
    • SOLVED Can't qmake QtWebengine - "qtwebenginecore-config.pri: No such file or directory"
      General and Desktop • qmake qtwebengine configure make pri • • Mohammadsm  

      6
      0
      Votes
      6
      Posts
      504
      Views

      Great ! Since you have it working now, please mark the thread as solved using the "Topic Tools" button so that other forum users may know a solution has been found :-) In case, there's an answer that provides the correct hint, you can also use the three button menu to mark it as the correct answer.
    • SOLVED Why it is generating multiple library files instead of single file?
      General and Desktop • configure pro file lib qt 5.13.1 qdll • • Yash001  

      5
      0
      Votes
      5
      Posts
      68
      Views

      @Christian-Ehrlicher said in Why it is generating multiple library files instead of single file?: why does your user has to link to all 4 files, esp. when three of them are (correct) symlinks? Sorry for silly question. I misunderstood about symbolic link. I got my answer user need to add libSquidstatLibrary.1.0.0.dylib file. Thank you.
    • UNSOLVED QT 5.8.0 64 Bit with MinGW-w64 Configuration
      General and Desktop • configure download qt5.8.0 64bit mingw64 • • JG97  

      7
      0
      Votes
      7
      Posts
      1221
      Views

      @JG97 said in QT 5.8.0 64 Bit with MinGW-w64 Configuration: How do I configure the x86 package for building 64 bit applications? You can't. You install Qt 5.12 MinGW 64bit and MinGW 64bit (it is available in the installer under Tools) and use this for 64bit apps. For 32bit apps you do the same but 32bit...
    • SOLVED Does QT configuration tool help in optimizing application size ?
      Tools • configure static build configuration configure tool • • Srinivasan  

      5
      0
      Votes
      5
      Posts
      901
      Views

      @sierdzio Thank you. Will look into it.
    • SOLVED Qt5 cross-compilation to raspberry pi3 - sh: tools/...../arm-linux-gnueabihf-g++: not found
      Installation and Deployment • cross compile configure raspberry pi 3 • • Worly  

      6
      0
      Votes
      6
      Posts
      1627
      Views

      I have found a solution here. Looks like Ubuntu couldn't run 32bit binary, but it's working now.
    • UNSOLVED Project ERROR: You cannot configure qt separately within a top-level build. ?
      General and Desktop • configure • • RickF  

      10
      0
      Votes
      10
      Posts
      5526
      Views

      Ok... well it seems now that the answer is that I need to use -prefix <> option.
    • UNSOLVED Compiling QT on windows for cross compilation with raspberry, fails. Project ERROR: Cannot run target compiler
      Installation and Deployment • configure compiler raspberry eglfs raspberrypi qt 5.10 • • cskr  

      11
      0
      Votes
      11
      Posts
      5294
      Views

      I also stuck in that place with error: Project ERROR: Cannot run target compiler '<path>/arm-linux-gnueabihf-g++'. but indeed as @aha_1980 said: @aha_1980 said in Compiling QT on windows for cross compilation with raspberry, fails. Project ERROR: Cannot run target compiler: Maybe you forgot to setup the environment? The best checkout if compiler is accessible is to run in root dir where Qt sources are: // with entry in bashrc $ arm-linux-gnueabihf-g++ --version //or with absolute path: $ /home/<user_name>/<path-to-bin-where-compiler-is-located>/arm-linux-gnueabihf-g++ --version NOTE: replace <user_name> with your's user name, and replace <path-to-bin-where-compiler-is-located> with proper path as stated below. And then we should get info: arm-linux-gnueabihf-g++ (crosstool-NG linaro-1.13.1+bzr2650 - Linaro GCC 2014.03) 4.8.3 20140303 (prerelease) ... The problem was with path to compiler: paths with "~" don't work, the best is to provide absolute path, for example: /home/<user_name>/<path-to-bin-where-compiler-is-located> // in my case: /home/<user_name>/raspi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin Or add in .bashrc path to compiler by adding at the end of file: export PATH=$PATH:/home/<user_name>/<path-to-bin-where-compiler-is-located> // in my case: export PATH=$PATH:/home/<user_name>/raspi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin Then running configure script we have: with absolute path: $ ./configure <other options> -device-option CROSS_COMPILE=/home/<user_name>/<path-to-bin-where-compiler-is-located>/arm-linux-gnueabihf- <other options> // in my case: $ ./configure <other options> -device-option CROSS_COMPILE=/home/<user_name>/raspi/tools/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64/bin/arm-linux-gnueabihf- <other options> with entry in bashrc: $ ./configure <other options> -device-option CROSS_COMPILE=/home/<user_name>/<path-to-bin-where-compiler-is-located>/arm-linux-gnueabihf- <other options> //in my case: $ ./configure <other options> -device-option CROSS_COMPILE=arm-linux-gnueabihf- <other options> Tested on RPi3 (with Raspbian from 2019-09-26) and Qt 5.12.6, on Ubuntu 18.03.4 Cheers!
    • UNSOLVED Linking of fontconfig and gstreamer with Qt fails
      Installation and Deployment • configure gstreamer1.0 fontconfig • • Kart  

      2
      0
      Votes
      2
      Posts
      2036
      Views

      I was able to solve the problem where fontconfig was not able to find libexpat by adding the following in my xplatform qmake.conf QMAKE_LINK = $HOST-g++ -lts -L/opt/qt/qt5.9.1arm/lib -Wl,-rpath -Wl,/opt/qt/qt5.9.1arm/lib QMAKE_LINK_SHLIB= $HOST-g++ -lts -L/opt/qt/qt5.9.1arm/lib -Wl,-rpath -Wl,/opt/qt/qt5.9.1arm/lib
    • SOLVED What are the source and build directories for a plugin testing Qt Creator instance?
      Installation and Deployment • qt creator plugin configure source build directory • • hlindberg  

      8
      1
      Votes
      8
      Posts
      1646
      Views

      Thanks @J-Hilk The link provided needs other configuration. My machine configuration is Red Hat Linux - 32 bit Qt creator 1.2.92, based on Qt 4.6.0 (32 bit) Make version: GNU Make 3.81 Qmake version: 1.07a (Qt 3.3.6) Please let me know what are the pre-requisites for a plugin. I want to create a menu item for Qt creator. Thanks in advance.
    • SOLVED How to configure qt with bluetooth and location modules?
      General and Desktop • linux bluetooth configure location build qt • • Aras  

      16
      0
      Votes
      16
      Posts
      6568
      Views

      You're welcome ! I'm pretty sure not all these packages are necessary but at least you have it working now :)
    • SOLVED Configure ERROR in Qt 5.8.0 Win + VC2013 + SSL + OpenSSL
      General and Desktop • openssl configure ssl qt5.8.0 vc2013 • • qDebug  

      22
      0
      Votes
      22
      Posts
      13357
      Views

      @kfrosty Thank you! Did work for me too! :)
    • UNSOLVED How do I use qt after building it from source?
      General and Desktop • qt5 configure git source build qt • • Aras  

      8
      0
      Votes
      8
      Posts
      2453
      Views

      You have here a list of the modules and their state. QtWebkit as been deprecated and removed. QtQuick1 as been deprecated and removed You can still build them from sources but you have to clone them specifically.
    • SOLVED error: Unknown module(s) in QT: uiplugin after building from source
      General and Desktop • configure mips uiplugin • • dream_captain  

      7
      0
      Votes
      7
      Posts
      2559
      Views

      @SGaist Thanks. Seems like that is exactly what i need.
    • SOLVED Build Telegram Desktop Source
      General and Desktop • build configure telegram • • AliReza Beytari  

      13
      0
      Votes
      13
      Posts
      5767
      Views

      @AliReza-Beytari Ps. are you sure this works with 5.7 ? Only Qt 5.6 is mentioned.
    • UNSOLVED Enable ICU support
      Installation and Deployment • cross compile configure icu • • Mark81  

      4
      0
      Votes
      4
      Posts
      2323
      Views

      @Mark81 it's a compiler issue: https://github.com/raspberrypi/tools/issues/41
    • UNSOLVED How to use configure script to build Qt5 and qmake for remote development on Jetson-TK1
      Mobile and Embedded • qmake cross compile configure remote jetson-tk1 • • IsidoreLechamalin  

      6
      0
      Votes
      6
      Posts
      2847
      Views

      Just saw something, why are you using sudo ? That's not a good idea when you are building anything.
    • UNSOLVED Setup environment to compile for Raspberry
      Mobile and Embedded • configure raspberry • • helenebro  

      14
      0
      Votes
      14
      Posts
      4686
      Views

      I didn't try. 5.4.1 is enough for me
    • UNSOLVED Build Qt 5.6 with system libs (problems with include order)
      Installation and Deployment • windows qmake configure bootstrap • • The2Ring  

      2
      0
      Votes
      2
      Posts
      1102
      Views

      @The2Ring welcome to devnet forum I have not done a build of Qt libs myself for some time. Therefore, I am not completely sure, but the building scripts are typically not happy about the use of backslashs '\'. Those are certainly the main folder separators for windows, but may need escaping. The scripts of Qt are originally coming from linux. Therefore in a lot of places it is better to use the forward slash '/' instead. I have seen that you have used already the forward slash with LIBS and INCLUDEPATH. So you are aware of the issue. However, you have used with configure.bat back slashes. In my opinion it is certainly worth a try with forward slashes. This is sometimes as a miracle and solving issues which are hard to understand.
    • UNSOLVED Reducing Qt installation directory size
      Installation and Deployment • build configure size qt 4.8 install • • Bart_Vandewoestyne  

      8
      0
      Votes
      8
      Posts
      3667
      Views

      @Bart_Vandewoestyne said: we're storing our Qt build in our version management system This is a strange thing to do, since Qt guarantees binary compatibility between minor versions, but well, you're free to choose. Unfortunately, I don't see how you could decrease the size further, beside deleting the docs, as the libraries are in the /lib directory and they're the next biggest size. Maybe store only the libs that you're using, i.e. these that you're going to deploy. No point in keeping QtXml if you're not using it, right?
    • How to compile qt with relative RUNPATH paths?
      General and Desktop • configure origin runpath • • Mike_Blackman  

      8
      0
      Votes
      8
      Posts
      5092
      Views

      @Mike_Blackman said: My application fails to load libqxcb.so plugin, because libqxcb.so plugin fails to locate Qt libraries. Prebuilt Qt solves this problem by using relative RUNPATH value within libqxcb.so. Sorry, I don't know what the prebuilt libraries did to the RPATH/RUNPATH. You can ask the Qt engineers in the Interest mailing list: http://lists.qt-project.org/mailman/listinfo/interest (Subscribe to the list first, then post there)
    • How to enable MEDIA_STREAM flag when building Qt?
      General and Desktop • configure building qt qt5.4.2 • • njozwiak  

      1
      0
      Votes
      1
      Posts
      504
      Views

      No one has replied

    • How to cross compile Qt creator application without connecting target platform?
      Mobile and Embedded • configure application cross-compile target qt creator 3.0 set-up • • Ajith_P_V  

      4
      0
      Votes
      4
      Posts
      2007
      Views

      @Ajith_P_V Yes that is right, you don't need to add the physical device. That was really just an extra option in case that was convenient to you later on : ) Have a look at creating kits for cross compiling in the qt docs if you can find it! - there are quite a few bits of info out there that may fill in the gaps I have left. I only gave the general steps required.
    • [SOLVED] Some modules are not available in configure
      Tools • configure building qt • • Eyeless  

      7
      0
      Votes
      7
      Posts
      3147
      Views

      @JKSH Thank you very much for your answer, I've successfully built Qt using your tutorial!
    • Is it possible to build Qt 5 without qml?
      Installation and Deployment • qml qt5 configure intel 2015 • • RichRowan  

      8
      0
      Votes
      8
      Posts
      8546
      Views

      Back on topic. I found that when building Qt you can specify to build only the module you need at the nmake stage, e.g. nmake module-qtbase That way it won't try and build all the other modules and qml libs.
    • Specific extra LIBS folder for Release and Debug when Building Qt
      Installation and Deployment • configure building qt icu • • Hernan Martinez  

      1
      0
      Votes
      1
      Posts
      454
      Views

      No one has replied

    • [Solved] Pi2 QT5.4.1 - STD errors + Configure errors?
      Mobile and Embedded • qmake error raspberry pi configure 5.4.1 std error 1 • • Flame Soulis  

      2
      0
      Votes
      2
      Posts
      2327
      Views

      Solved. Just started compiling 5.4.2 and just small issues that are easier to resolve.
    • [SOLVED] Configure default project file structure
      Tools • configure organization file structure directory struc • • theblob  

      3
      0
      Votes
      3
      Posts
      1070
      Views

      Hi and welcome to devnet, you can create your Project Wizard in Qt Creator
    • Build Environment settings
      General and Desktop • qtcreator qt5.5 configure • • shav  

      3
      0
      Votes
      3
      Posts
      796
      Views

      No, I don't have any problem with build environment. I want to know the list of parameters. For example like in Xcode.
    • QT Webkit make Error undefined reference to WTF::printInternal
      Mobile and Embedded • qmake webkit configure • • BluTiGeS  

      1
      0
      Votes
      1
      Posts
      966
      Views

      No one has replied

    • Regarding development of software in both X-32 and x-64 bit OS configurations
      Installation and Deployment • configure pyqt qt application compilation cross platform 64 bits 32 bits • • John R  

      7
      0
      Votes
      7
      Posts
      1804
      Views

      @sierdzio said: Thanks a lot for the clarification.
    • is qtdbus included in 5.3 release?
      General and Desktop • configure dbus qt 5.3 • • thealse  

      1
      0
      Votes
      1
      Posts
      467
      Views

      No one has replied

    • [Solved]Building QtGui links it dynamically to icu, pcre and zlib, even though it is configured not to
      General and Desktop • linux build configure • • lyubomirv  

      9
      0
      Votes
      9
      Posts
      2915
      Views

      IIRC, QtCore will also use pcre for QRegularExpression
    • Error configuring way NDK Android in QT Creator
      Installation and Deployment • android qtcreator configure application androidqt ndk androiddeployqt application-and • • Vitor Brangioni  

      1
      0
      Votes
      1
      Posts
      820
      Views

      No one has replied

    • Get build-config of prebuild binaries?
      General and Desktop • build configure building • • Oxy79  

      1
      0
      Votes
      1
      Posts
      631
      Views

      No one has replied

    • Qt5.4.1 build for IMX6 error
      Mobile and Embedded • configure imx6 crosscompile i.mx6 freescale • • _dmp  

      1
      0
      Votes
      1
      Posts
      580
      Views

      No one has replied