Skip to content
QtWS25 Last Chance
  • 0 Votes
    12 Posts
    2k Views
    L
    @jsulm That crossed my mind also, so I did a full uninstall, then reinstalled from the Qt installer. Didn't change.
  • 0 Votes
    3 Posts
    1k Views
    SGaistS
    Hi and welcome to devnet, To add to @jsulm, did you build Qwt yourself ? If so, are you using the same setup as the people who provided the application ?
  • 0 Votes
    6 Posts
    8k Views
    E
    After doing some research on the source files, since all the tutorials on the internet seem to focus on getting the help working with pre-builds, I found out you have to make the documentation seperatly. When you build Qt from sources, the Qt components, the IDE (Qt Creator) and the documentation are separate things, and you need to build each one, here are the links for the wiki for each one: Qt base: https://wiki.qt.io/Building_Qt_5_from_Git Qt Creator: https://wiki.qt.io/Building_Qt_Creator_from_Git Qt Documentation: http://wiki.qt.io/Building_Qt_Documentation In short, to get the help working you need to go to qt5 and run make docs: cd ~/qt5 make docs This will build everything, that solved the problem EDIT: Found the source of the problem, I didn't pay attention in the configure command provided in this guide "https://wiki.qt.io/Building_Qt_5_from_Git": ./configure -developer-build -opensource -nomake examples -nomake tests -no-gtkstyle -confirm-license It recommended that because it's faster, but left out the examples and the tests, I should have used it like: ./configure -developer-build -opensource -nomake tests -no-gtkstyle -confirm-license With that you get everything :)
  • 0 Votes
    2 Posts
    940 Views
    J
    Hi, I'm having a similar problem with the auto installer for Linux 64. The installer gets about half way and then stops with the error message: Error during installation process (qt.54.gcc_64): File '/qt/5.4/gcc_64/bin/qmake' does not exist or is not an executable binary. Checked the files and sure enough qmake is not executable by any user and only read write by root, I tried chmod but can't make the file executable. I don't really understand why its not working I have a working tool-chain and executing the run file as root. I haven’t tried building it from source yet, just hoping some one might know what’s happening?