Skip to content

Installation and Deployment

Your Qt just doesn't want to build? Your compiler can't find the libs? Here's where you find comfort and understanding. And help.
9.0k Topics 49.7k Posts
  • 18 Votes
    1 Posts
    18k Views
    No one has replied
  • Deployment on macOS

    Solved
    8
    0 Votes
    8 Posts
    88 Views
    MortyMarsM

    @SimonSchroeder

    Thanks for your reply and for sharing your script.
    I'll try to adapt it for my own application.

  • Silent installation commercial product

    Unsolved
    4
    0 Votes
    4 Posts
    32 Views
    JonBJ

    If you are saying you have a licensed commercial version of Qt then you can ask TQtC about this.

  • 1 Votes
    178 Posts
    710k Views
    A

    a bit late but for future use and reference. followed the ldd on the plugin and libxcursor.so wasn't found. My solution:
    sudo apt install libxcb-*
    and it works (Qt6 already)

  • Include additional libs to static Qt build

    Unsolved
    8
    0 Votes
    8 Posts
    106 Views
    A

    @Christian-Ehrlicher

    I compiled the libs: libOpenGL,libGLX,libEGL statically and got the .a files of that libs, also i installed them to linux environment so Qt Creator project find them, but i have a lot of errors trying to compile the test project linking the libs statically.

    I've built the libs from source: libglvnd

    I've used the following configuration for meson builder:

    meson --default-library=static /home/alex/Downloads/libglvnd/build

    Here is my .pro file:

    QT += core gui greaterThan(QT_MAJOR_VERSION, 4): QT += widgets CONFIG += static # You can make your code fail to compile if it uses deprecated APIs. # In order to do so, uncomment the following line. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0 SOURCES += \ main.cpp \ mainwindow.cpp HEADERS += \ mainwindow.h FORMS += \ mainwindow.ui QMAKE_LFLAGS += -static # Default rules for deployment. qnx: target.path = /tmp/$${TARGET}/bin else: unix:!android: target.path = /opt/$${TARGET}/bin !isEmpty(target.path): INSTALLS += target

    Here is compiler errors output:

    22:16:32: Running steps for project st... 22:16:32: Starting: "/usr/bin/make" clean -j2 rm -f moc_predefs.h rm -f moc_mainwindow.cpp rm -f ui_mainwindow.h rm -f main.o mainwindow.o st_plugin_import.o moc_mainwindow.o rm -f *~ core *.core 22:16:32: The process "/usr/bin/make" exited normally. 22:16:32: Starting: "/home/alex/Qt/6.7.0/static_gcc_64/bin/qmake" /home/alex/Qt/QtProjects/st/st.pro -spec linux-g++ CONFIG+=qtquickcompiler 22:16:32: The process "/home/alex/Qt/6.7.0/static_gcc_64/bin/qmake" exited normally. 22:16:32: Starting: "/usr/bin/make" -f /home/alex/Qt/QtProjects/st/build/Desktop_Qt_6_7_0_static_gcc_64-Release/Makefile qmake_all make: Nothing to be done for 'qmake_all'. 22:16:32: The process "/usr/bin/make" exited normally. 22:16:32: Starting: "/usr/bin/make" -j2 /home/alex/Qt/6.7.0/static_gcc_64/libexec/uic ../../mainwindow.ui -o ui_mainwindow.h g++ -c -pipe -O2 -Wall -Wextra -fPIC -D_REENTRANT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../st -I. -I../../../../6.7.0/static_gcc_64/include -I../../../../6.7.0/static_gcc_64/include/QtWidgets -I../../../../6.7.0/static_gcc_64/include/QtGui -I../../../../6.7.0/static_gcc_64/include/QtCore -I. -I. -I../../../../6.7.0/static_gcc_64/mkspecs/linux-g++ -o main.o ../../main.cpp g++ -c -pipe -O2 -Wall -Wextra -fPIC -D_REENTRANT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../st -I. -I../../../../6.7.0/static_gcc_64/include -I../../../../6.7.0/static_gcc_64/include/QtWidgets -I../../../../6.7.0/static_gcc_64/include/QtGui -I../../../../6.7.0/static_gcc_64/include/QtCore -I. -I. -I../../../../6.7.0/static_gcc_64/mkspecs/linux-g++ -o st_plugin_import.o /home/alex/Qt/QtProjects/st/build/Desktop_Qt_6_7_0_static_gcc_64-Release/st_plugin_import.cpp g++ -pipe -O2 -Wall -Wextra -fPIC -dM -E -o moc_predefs.h ../../../../6.7.0/static_gcc_64/mkspecs/features/data/dummy.cpp g++ -c -pipe -O2 -Wall -Wextra -fPIC -D_REENTRANT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../st -I. -I../../../../6.7.0/static_gcc_64/include -I../../../../6.7.0/static_gcc_64/include/QtWidgets -I../../../../6.7.0/static_gcc_64/include/QtGui -I../../../../6.7.0/static_gcc_64/include/QtCore -I. -I. -I../../../../6.7.0/static_gcc_64/mkspecs/linux-g++ -o mainwindow.o ../../mainwindow.cpp /home/alex/Qt/6.7.0/static_gcc_64/libexec/moc -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB --include /home/alex/Qt/QtProjects/st/build/Desktop_Qt_6_7_0_static_gcc_64-Release/moc_predefs.h -I/home/alex/Qt/6.7.0/static_gcc_64/mkspecs/linux-g++ -I/home/alex/Qt/QtProjects/st -I/home/alex/Qt/6.7.0/static_gcc_64/include -I/home/alex/Qt/6.7.0/static_gcc_64/include/QtWidgets -I/home/alex/Qt/6.7.0/static_gcc_64/include/QtGui -I/home/alex/Qt/6.7.0/static_gcc_64/include/QtCore -I. -I/usr/include/c++/11 -I/usr/include/x86_64-linux-gnu/c++/11 -I/usr/include/c++/11/backward -I/usr/lib/gcc/x86_64-linux-gnu/11/include -I/usr/local/include -I/usr/include/x86_64-linux-gnu -I/usr/include ../../mainwindow.h -o moc_mainwindow.cpp g++ -c -pipe -O2 -Wall -Wextra -fPIC -D_REENTRANT -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB -I../../../st -I. -I../../../../6.7.0/static_gcc_64/include -I../../../../6.7.0/static_gcc_64/include/QtWidgets -I../../../../6.7.0/static_gcc_64/include/QtGui -I../../../../6.7.0/static_gcc_64/include/QtCore -I. -I. -I../../../../6.7.0/static_gcc_64/mkspecs/linux-g++ -o moc_mainwindow.o moc_mainwindow.cpp g++ -static -Wl,-O1 -o st main.o mainwindow.o st_plugin_import.o moc_mainwindow.o /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Gui_resources_1/.rcc/qrc_qpdf_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Gui_resources_2/.rcc/qrc_gui_shaders_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/plugins/platforms/libqxcb.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/xcbglintegrations/libqxcb-egl-integration.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/xcbglintegrations/libqxcb-glx-integration.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6XcbQpa.a -lxkbcommon-x11 -lxcb-cursor -lxcb-icccm -lxcb-image -lxcb-keysyms -lxcb-randr -lxcb-render-util -lxcb-shm -lxcb-sync -lxcb-xfixes -lxcb-render -lxcb-shape -lxcb-xkb -lxcb-glx /home/alex/Qt/6.7.0/static_gcc_64/plugins/iconengines/libqsvgicon.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqgif.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqicns.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqico.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqjpeg.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6BundledLibjpeg.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqsvg.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Svg.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqtga.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqtiff.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqwbmp.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/imageformats/libqwebp.a /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/EglFSDeviceIntegrationPrivate_resources_1/.rcc/qrc_cursor_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/plugins/egldeviceintegrations/libqeglfs-emu-integration.a /home/alex/Qt/6.7.0/static_gcc_64/plugins/egldeviceintegrations/libqeglfs-x11-integration.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6EglFSDeviceIntegration.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6FbSupport.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6InputSupport.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6DeviceDiscoverySupport.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6OpenGL.a -lX11-xcb -lxcb /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Widgets_resources_1/.rcc/qrc_qstyle_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Widgets_resources_2/.rcc/qrc_qstyle1_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Widgets_resources_3/.rcc/qrc_qstyle_fusion_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/lib/objects-Release/Widgets_resources_4/.rcc/qrc_qmessagebox_init.cpp.o /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Widgets.a /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Gui.a -lEGL -lpng /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6BundledHarfbuzz.a -lfreetype -lfontconfig -lX11 /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6DBus.a -ldbus-1 -lxkbcommon /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Core.a -lz -lm -lpcre2-16 -ldl -lrt -lpthread -lGLX -lOpenGL /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `AtomicIncrement': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1848: multiple definition of `AtomicIncrement'; /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o):/home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1191: first defined here /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `AtomicSwap': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1866: multiple definition of `AtomicSwap'; /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o):/home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1209: first defined here /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `AtomicCompareAndSwap': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1883: multiple definition of `AtomicCompareAndSwap'; /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o):/home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1226: first defined here /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `AtomicDecrementClampAtZero': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1900: multiple definition of `AtomicDecrementClampAtZero'; /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o):/home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1243: first defined here /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `IsX11Display': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:189: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libdbus-1.a(libdbus_1_la-dbus-sysdeps-unix.o): in function `fill_user_info': (.text+0x2cf): warning: Using 'getgrouplist' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Core.a(qfilesystemengine_unix.cpp.o): in function `QFileSystemEngine::resolveGroupName(unsigned int)': qfilesystemengine_unix.cpp:(.text._ZN17QFileSystemEngine16resolveGroupNameEj+0x17e): warning: Using 'getgrgid_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /home/alex/Qt/6.7.0/static_gcc_64/lib/libQt6Widgets.a(qfiledialog.cpp.o): in function `qt_tildeExpansion(QString const&)': qfiledialog.cpp:(.text._Z17qt_tildeExpansionRK7QString+0x14d): warning: Using 'getpwnam_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libdbus-1.a(libdbus_1_la-dbus-sysdeps-unix.o): in function `fill_user_info': (.text+0x17b): warning: Using 'getpwuid_r' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libxcb.a(xcb_util.o): in function `_xcb_open_tcp': (.text+0x428): warning: Using 'getaddrinfo' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfreetype.a(sfnt.o): in function `sfnt_init_face': (.text+0xf543): undefined reference to `BrotliDecoderDecompress' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fcxml.o): in function `FcConfigMessage': (.text+0x2f2): undefined reference to `XML_GetCurrentLineNumber' /usr/bin/ld: (.text+0x371): undefined reference to `XML_GetCurrentLineNumber' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fcxml.o): in function `FcConfigParseAndLoadFromMemoryInternal': (.text+0x1319): undefined reference to `XML_ParserCreate' /usr/bin/ld: (.text+0x139d): undefined reference to `XML_SetUserData' /usr/bin/ld: (.text+0x13b3): undefined reference to `XML_SetDoctypeDeclHandler' /usr/bin/ld: (.text+0x13c9): undefined reference to `XML_SetElementHandler' /usr/bin/ld: (.text+0x13d8): undefined reference to `XML_SetCharacterDataHandler' /usr/bin/ld: (.text+0x13e9): undefined reference to `XML_GetBuffer' /usr/bin/ld: (.text+0x1452): undefined reference to `XML_ParseBuffer' /usr/bin/ld: (.text+0x145e): undefined reference to `XML_GetErrorCode' /usr/bin/ld: (.text+0x1465): undefined reference to `XML_ErrorString' /usr/bin/ld: (.text+0x14b7): undefined reference to `XML_ParserFree' /usr/bin/ld: (.text+0x154f): undefined reference to `XML_ParseBuffer' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libxcb-image.a(xcb_image.o): in function `xcb_create_pixmap_from_bitmap_data': (.text+0x14b4): undefined reference to `xcb_aux_create_gc' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libxcb.a(xcb_auth.o): in function `get_authptr': (.text+0xd0): undefined reference to `XauGetBestAuthByAddr' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libxcb.a(xcb_auth.o): in function `_xcb_get_auth_info': (.text+0x2d9): undefined reference to `XauDisposeAuth' /usr/bin/ld: (.text+0x51f): undefined reference to `XdmcpWrap' /usr/bin/ld: (.text+0x52f): undefined reference to `XauDisposeAuth' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `__eglGetCurrentAPIState': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglcurrent.h:104: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `InternalLoseCurrent': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:559: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `InternalMakeCurrentDispatch': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:624: undefined reference to `__glDispatchMakeCurrent' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:636: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `eglMakeCurrent': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:675: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `eglReleaseThread': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:803: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `eglGetProcAddress': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1177: undefined reference to `__glDispatchGetProcAddress' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `__eglThreadInitialize': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1308: undefined reference to `__glDispatchCheckMultithreaded' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `__eglResetOnFork': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1340: undefined reference to `__glDispatchReset' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `__eglInit': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1349: undefined reference to `__glDispatchGetABIVersion' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1355: undefined reference to `__glDispatchInit' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libegl.c.o): in function `__eglFini': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1384: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1387: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/EGL/libegl.c:1399: undefined reference to `__glDispatchFini' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libeglcurrent.c.o): in function `__eglGetCurrentAPIState': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglcurrent.h:104: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libeglvendor.c.o): in function `__eglTeardownVendors': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglvendor.c:150: undefined reference to `__glDispatchForceUnpatch' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libeglvendor.c.o): in function `TeardownVendor': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglvendor.c:173: undefined reference to `__glDispatchDestroyTable' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libEGL.a(libeglvendor.c.o): in function `LoadVendor': /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglvendor.c:572: undefined reference to `__glDispatchNewVendorID' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/EGL/libeglvendor.c:576: undefined reference to `__glDispatchCreateTable' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fcfreetype.o): in function `FcFreeTypeQueryFaceInternal': (.text+0x2ac1): undefined reference to `FT_Get_BDF_Property' /usr/bin/ld: (.text+0x2af7): undefined reference to `FT_Get_BDF_Property' /usr/bin/ld: (.text+0x2bf7): undefined reference to `FT_Get_BDF_Property' /usr/bin/ld: (.text+0x2c58): undefined reference to `FT_Get_BDF_Property' /usr/bin/ld: (.text+0x2c74): undefined reference to `FT_Get_BDF_Property' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fcfreetype.o):(.text+0x2d77): more undefined references to `FT_Get_BDF_Property' follow /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fchash.o): in function `FcHashUuidCopy': (.text+0x204): undefined reference to `uuid_copy' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fccache.o): in function `FcDirCacheBasenameUUID': (.text+0x7d2): undefined reference to `uuid_unparse' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fccache.o): in function `IA__FcDirCacheCreateUUID': (.text+0x1527): undefined reference to `uuid_generate_random' /usr/bin/ld: (.text+0x1570): undefined reference to `uuid_unparse' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libfontconfig.a(fccache.o): in function `IA__FcDirCacheLoad': (.text+0x2340): undefined reference to `uuid_parse' /usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/11/../../../x86_64-linux-gnu/libdbus-1.a(libdbus_1_la-dbus-sysdeps-unix.o): in function `_dbus_listen_systemd_sockets': (.text+0x200e): undefined reference to `sd_listen_fds' /usr/bin/ld: (.text+0x204f): undefined reference to `sd_is_socket' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXGetCurrentThreadState': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxcurrent.h:71: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXDisplayClosed': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:626: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `InternalLoseCurrent': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:838: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `InternalMakeCurrentDispatch': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:917: undefined reference to `__glDispatchMakeCurrent' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:929: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `CommonMakeCurrent': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:976: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `GetVendorClientStrings': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1250: undefined reference to `XScreenCount' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `glXGetClientString': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1393: undefined reference to `XScreenCount' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `glXGetProcAddress': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1819: undefined reference to `__glDispatchGetProcAddress' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXThreadInitialize': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:1965: undefined reference to `__glDispatchCheckMultithreaded' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXResetOnFork': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2014: undefined reference to `__glDispatchReset' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXInit': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2073: undefined reference to `__glDispatchGetABIVersion' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2079: undefined reference to `__glDispatchInit' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglx.c.o): in function `__glXFini': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2138: undefined reference to `__glDispatchGetCurrentThreadState' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2141: undefined reference to `__glDispatchLoseCurrent' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglx.c:2151: undefined reference to `__glDispatchFini' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglxmapping.c.o): in function `__glXGetGLXDispatchAddress': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:208: undefined reference to `__glDispatchGetProcAddress' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglxmapping.c.o): in function `GLXEntrypointUpdateCallback': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:249: undefined reference to `__glDispatchGetProcAddress' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglxmapping.c.o): in function `CleanupVendorNameEntry': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:309: undefined reference to `__glDispatchDestroyTable' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglxmapping.c.o): in function `__glXLookupVendorByName': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:440: undefined reference to `__glDispatchNewVendorID' /usr/bin/ld: /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:443: undefined reference to `__glDispatchCreateTable' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libGLX.a(libglxmapping.c.o): in function `__glXMappingTeardown': /home/alex/Downloads/libglvnd-master/build/../src/GLX/libglxmapping.c:1070: undefined reference to `__glDispatchForceUnpatch' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o): in function `public_entry_start': entry_x86_64_tls.c:(wtext+0x7): undefined reference to `_glapi_tls_Current' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o): in function `glActiveShaderProgram': entry_x86_64_tls.c:(wtext+0x27): undefined reference to `_glapi_tls_Current' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o): in function `glActiveTexture': entry_x86_64_tls.c:(wtext+0x47): undefined reference to `_glapi_tls_Current' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o): in function `glAlphaFunc': entry_x86_64_tls.c:(wtext+0x67): undefined reference to `_glapi_tls_Current' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o): in function `glAreTexturesResident': entry_x86_64_tls.c:(wtext+0x87): undefined reference to `_glapi_tls_Current' /usr/bin/ld: /usr/local/lib/x86_64-linux-gnu/libOpenGL.a(entry_x86_64_tls.c.o):entry_x86_64_tls.c:(wtext+0xa7): more undefined references to `_glapi_tls_Current' follow collect2: error: ld returned 1 exit status make: *** [Makefile:474: st] Error 1 22:16:41: The process "/usr/bin/make" exited with code 2. Error while building/deploying project st (kit: Desktop Qt 6.7.0 (static_gcc_64)) When executing step "Make" 22:16:41: Elapsed time: 00:08.

    What should i do for solving the errors ? Thank you

  • trying to build a static Qt for Windows

    Solved
    18
    0 Votes
    18 Posts
    162 Views
    mzimmersM

    @cristian-adam submitted.

    Thanks.

  • Error while installing Qt on Linux 64 bit OS

    Unsolved
    7
    0 Votes
    7 Posts
    141 Views
    H

    Older version online runner may success. I have just installed Qt creator successfully by using the installer provided in my link. You can also check other mirrors for your convenience.

  • QT Android Instalation

    Solved
    7
    0 Votes
    7 Posts
    103 Views
    P

    @Patar Done it, need to adjust the android studio to have same SDK same as in the QT

  • 0 Votes
    1 Posts
    14 Views
    No one has replied
  • Qt Kits error MSVC and MINGW in Qt-6.6.0

    Unsolved
    4
    0 Votes
    4 Posts
    33 Views
    cristian-adamC

    It's the [cmake] content of General Messages. You can clear the content before running Build > Run CMake.

  • Qt 6.6.7 error using ninja build and cmake

    Solved
    6
    0 Votes
    6 Posts
    50 Views
    P

    @cristian-adam Thanks mate. That did it.

  • 0 Votes
    8 Posts
    2k Views
    N

    Maybe missing libxkbcommon.

    yum install libxkbcommon libxkbcommon-devel libxkbcommon-x11 libxkbcommon-x11-devel
  • 0 Votes
    5 Posts
    52 Views
    M

    @mdear

    │ │ ├── Particles3D │ │ │ ├── designer │ │ │ │ ├── Affector3DSection.qml │ │ │ │ ├── Affector3DSpecifics.qml │ │ │ │ ├── Attractor3DSection.qml │ │ │ │ ├── Attractor3DSpecifics.qml │ │ │ │ ├── DynamicBurst3DSection.qml │ │ │ │ ├── DynamicBurst3DSpecifics.qml │ │ │ │ ├── EmitBurst3DSection.qml │ │ │ │ ├── EmitBurst3DSpecifics.qml │ │ │ │ ├── Gravity3DSection.qml │ │ │ │ ├── Gravity3DSpecifics.qml │ │ │ │ ├── images │ │ │ │ │ ├── attractor-16px.png │ │ │ │ │ ├── attractor-24px@2x.png │ │ │ │ │ ├── attractor-24px.png │ │ │ │ │ ├── dummy16.png │ │ │ │ │ ├── dummy@2x.png │ │ │ │ │ ├── dummy.png │ │ │ │ │ ├── emit-burst-16px.png │ │ │ │ │ ├── emit-burst-24px@2x.png │ │ │ │ │ ├── emit-burst-24px.png │ │ │ │ │ ├── emitter-16px.png │ │ │ │ │ ├── emitter-24px@2x.png │ │ │ │ │ ├── emitter-24px.png │ │ │ │ │ ├── gravity-16px.png │ │ │ │ │ ├── gravity-24px@2x.png │ │ │ │ │ ├── gravity-24px.png │ │ │ │ │ ├── line-particle-16px.png │ │ │ │ │ ├── line-particle-24px@2x.png │ │ │ │ │ ├── line-particle-24px.png │ │ │ │ │ ├── model-blend-particle-16px.png │ │ │ │ │ ├── model-blend-particle-24px@2x.png │ │ │ │ │ ├── model-blend-particle-24px.png │ │ │ │ │ ├── model-particle-16px.png │ │ │ │ │ ├── model-particle-24px@2x.png │ │ │ │ │ ├── model-particle-24px.png │ │ │ │ │ ├── model-shape-16px.png │ │ │ │ │ ├── model-shape-24px@2x.png │ │ │ │ │ ├── model-shape-24px.png │ │ │ │ │ ├── particle-custom-shape-16px.png │ │ │ │ │ ├── particle-custom-shape-24px@2x.png │ │ │ │ │ ├── particle-custom-shape-24px.png │ │ │ │ │ ├── particle-shape-16px.png │ │ │ │ │ ├── particle-shape-24px@2x.png │ │ │ │ │ ├── particle-shape-24px.png │ │ │ │ │ ├── particle-system-16px.png │ │ │ │ │ ├── particle-system-24px@2x.png │ │ │ │ │ ├── particle-system-24px.png │ │ │ │ │ ├── point-rotator-16px.png │ │ │ │ │ ├── point-rotator-24px@2x.png │ │ │ │ │ ├── point-rotator-24px.png │ │ │ │ │ ├── repeller-16px.png │ │ │ │ │ ├── repeller-24px@2x.png │ │ │ │ │ ├── repeller-24px.png │ │ │ │ │ ├── scale-affector-16px.png │ │ │ │ │ ├── scale-affector-24px@2x.png │ │ │ │ │ ├── scale-affector-24px.png │ │ │ │ │ ├── sprite-particle-16px.png │ │ │ │ │ ├── sprite-particle-24px@2x.png │ │ │ │ │ ├── sprite-particle-24px.png │ │ │ │ │ ├── sprite-sequence-16px.png │ │ │ │ │ ├── sprite-sequence-24px@2x.png │ │ │ │ │ ├── sprite-sequence-24px.png │ │ │ │ │ ├── target-direction-16px.png │ │ │ │ │ ├── target-direction-24px@2x.png │ │ │ │ │ ├── target-direction-24px.png │ │ │ │ │ ├── trail-emitter-16px.png │ │ │ │ │ ├── trail-emitter-24px@2x.png │ │ │ │ │ ├── trail-emitter-24px.png │ │ │ │ │ ├── vector-direction-16px.png │ │ │ │ │ ├── vector-direction-24px@2x.png │ │ │ │ │ ├── vector-direction-24px.png │ │ │ │ │ ├── wander-16px.png │ │ │ │ │ ├── wander-24px@2x.png │ │ │ │ │ └── wander-24px.png │ │ │ │ ├── LineParticle3DSection.qml │ │ │ │ ├── LineParticle3DSpecifics.qml │ │ │ │ ├── ModelBlendParticle3DSection.qml │ │ │ │ ├── ModelBlendParticle3DSpecifics.qml │ │ │ │ ├── ModelParticle3DSection.qml │ │ │ │ ├── ModelParticle3DSpecifics.qml │ │ │ │ ├── NodeSection.qml │ │ │ │ ├── NodeSpecifics.qml │ │ │ │ ├── Particle3DSection.qml │ │ │ │ ├── Particle3DSpecifics.qml │ │ │ │ ├── ParticleCustomShape3DSection.qml │ │ │ │ ├── ParticleCustomShape3DSpecifics.qml │ │ │ │ ├── ParticleEmitter3DSection.qml │ │ │ │ ├── ParticleEmitter3DSpecifics.qml │ │ │ │ ├── ParticleModelShape3DSection.qml │ │ │ │ ├── ParticleModelShape3DSpecifics.qml │ │ │ │ ├── particles3d.metainfo │ │ │ │ ├── ParticleShape3DSection.qml │ │ │ │ ├── ParticleShape3DSpecifics.qml │ │ │ │ ├── ParticleSystem3DSection.qml │ │ │ │ ├── ParticleSystem3DSpecifics.qml │ │ │ │ ├── PointRotator3DSection.qml │ │ │ │ ├── PointRotator3DSpecifics.qml │ │ │ │ ├── Repeller3DSection.qml │ │ │ │ ├── Repeller3DSpecifics.qml │ │ │ │ ├── ScaleAffector3DSection.qml │ │ │ │ ├── ScaleAffector3DSpecifics.qml │ │ │ │ ├── source │ │ │ │ │ ├── particlesystem_animatedsprite_template.qml │ │ │ │ │ ├── particlesystem_attractor_template.qml │ │ │ │ │ ├── particlesystem_burst_template.qml │ │ │ │ │ ├── particlesystem_modelblend_template.qml │ │ │ │ │ ├── particlesystem_modelshape_template.qml │ │ │ │ │ ├── particlesystem_particletrail_template.qml │ │ │ │ │ ├── particlesystem_sprite_template.qml │ │ │ │ │ ├── particlesystem_template.qml │ │ │ │ │ └── particlesystem_wander_template.qml │ │ │ │ ├── SpriteParticle3DSection.qml │ │ │ │ ├── SpriteParticle3DSpecifics.qml │ │ │ │ ├── SpriteSequence3DSection.qml │ │ │ │ ├── SpriteSequence3DSpecifics.qml │ │ │ │ ├── TargetDirection3DSection.qml │ │ │ │ ├── TargetDirection3DSpecifics.qml │ │ │ │ ├── TrailEmitter3DSection.qml │ │ │ │ ├── TrailEmitter3DSpecifics.qml │ │ │ │ ├── VectorDirection3DSection.qml │ │ │ │ ├── VectorDirection3DSpecifics.qml │ │ │ │ ├── Wander3DSection.qml │ │ │ │ └── Wander3DSpecifics.qml │ │ │ ├── libqtquick3dparticles3dplugin.so │ │ │ ├── plugins.qmltypes │ │ │ └── qmldir │ │ ├── Physics │ │ │ ├── designer │ │ │ │ ├── BoxShapeSection.qml │ │ │ │ ├── BoxShapeSpecifics.qml │ │ │ │ ├── CapsuleShapeSection.qml │ │ │ │ ├── CapsuleShapeSpecifics.qml │ │ │ │ ├── CharacterControllerSection.qml │ │ │ │ ├── CharacterControllerSpecifics.qml │ │ │ │ ├── CollisionShapeSection.qml │ │ │ │ ├── ConvexMeshShapeSection.qml │ │ │ │ ├── ConvexMeshShapeSpecifics.qml │ │ │ │ ├── DynamicRigidBodySection.qml │ │ │ │ ├── DynamicRigidBodySpecifics.qml │ │ │ │ ├── HeightFieldShapeSection.qml │ │ │ │ ├── HeightFieldShapeSpecifics.qml │ │ │ │ ├── images │ │ │ │ │ ├── boxshape16.png │ │ │ │ │ ├── boxshape@2x.png │ │ │ │ │ ├── boxshape.png │ │ │ │ │ ├── capsuleshape16.png │ │ │ │ │ ├── capsuleshape@2x.png │ │ │ │ │ ├── capsuleshape.png │ │ │ │ │ ├── charactercontroller16.png │ │ │ │ │ ├── charactercontroller@2x.png │ │ │ │ │ ├── charactercontroller.png │ │ │ │ │ ├── convexmeshshape16.png │ │ │ │ │ ├── convexmeshshape@2x.png │ │ │ │ │ ├── convexmeshshape.png │ │ │ │ │ ├── dynamicrigidbody16.png │ │ │ │ │ ├── dynamicrigidbody@2x.png │ │ │ │ │ ├── dynamicrigidbody.png │ │ │ │ │ ├── heightfieldshape16.png │ │ │ │ │ ├── heightfieldshape@2x.png │ │ │ │ │ ├── heightfieldshape.png │ │ │ │ │ ├── physicsmaterial16.png │ │ │ │ │ ├── physicsmaterial@2x.png │ │ │ │ │ ├── physicsmaterial.png │ │ │ │ │ ├── physicsworld16.png │ │ │ │ │ ├── physicsworld@2x.png │ │ │ │ │ ├── physicsworld.png │ │ │ │ │ ├── planeshape16.png │ │ │ │ │ ├── planeshape@2x.png │ │ │ │ │ ├── planeshape.png │ │ │ │ │ ├── sphereshape16.png │ │ │ │ │ ├── sphereshape@2x.png │ │ │ │ │ ├── sphereshape.png │ │ │ │ │ ├── staticrigidbody16.png │ │ │ │ │ ├── staticrigidbody@2x.png │ │ │ │ │ ├── staticrigidbody.png │ │ │ │ │ ├── trianglemeshshape16.png │ │ │ │ │ ├── trianglemeshshape@2x.png │ │ │ │ │ ├── trianglemeshshape.png │ │ │ │ │ ├── triggerbody16.png │ │ │ │ │ ├── triggerbody@2x.png │ │ │ │ │ └── triggerbody.png │ │ │ │ ├── NodeSection.qml │ │ │ │ ├── PhysicsBodySection.qml │ │ │ │ ├── PhysicsMaterialSection.qml │ │ │ │ ├── PhysicsMaterialSpecifics.qml │ │ │ │ ├── physics.metainfo │ │ │ │ ├── PhysicsNodeSection.qml │ │ │ │ ├── PhysicsWorldSection.qml │ │ │ │ ├── PhysicsWorldSpecifics.qml │ │ │ │ ├── PlaneShapeSpecifics.qml │ │ │ │ ├── SphereShapeSection.qml │ │ │ │ ├── SphereShapeSpecifics.qml │ │ │ │ ├── StaticRigidBodySpecifics.qml │ │ │ │ ├── TriangleMeshShapeSection.qml │ │ │ │ ├── TriangleMeshShapeSpecifics.qml │ │ │ │ └── TriggerBodySpecifics.qml │ │ │ ├── Helpers │ │ │ │ ├── libqtquick3dphysicshelpersplugin.so │ │ │ │ ├── plugins.qmltypes │ │ │ │ └── qmldir │ │ │ ├── libqquick3dphysicsplugin.so │ │ │ ├── plugins.qmltypes │ │ │ └── qmldir │ │ ├── plugins.qmltypes │ │ ├── qmldir │ │ └── SpatialAudio │ │ ├── libquick3dspatialaudioplugin.so │ │ ├── plugins.qmltypes │ │ └── qmldir │ ├── QtTest │ │ ├── libquicktestplugin.so │ │ ├── plugins.qmltypes │ │ ├── qmldir │ │ ├── SignalSpy.qml │ │ ├── TestCase.qml │ │ ├── testlogger.js │ │ └── TestSchedule.qml │ └── QtWayland │ └── Compositor │ ├── IviApplication │ │ ├── libwaylandcompositoriviapplicationplugin.so │ │ ├── plugins.qmltypes │ │ └── qmldir │ ├── libqwaylandcompositorplugin.so │ ├── PresentationTime │ │ ├── libwaylandcompositorpresentationtimeplugin.so │ │ └── qmldir │ ├── qmldir │ ├── qmlfiles │ │ ├── WaylandCursorItem.qml │ │ └── WaylandOutputWindow.qml │ ├── QtShell │ │ ├── libwaylandcompositorqtshellplugin.so │ │ ├── plugins.qmltypes │ │ └── qmldir │ ├── TextureSharingExtension │ │ ├── libwaylandtexturesharingextensionplugin.so │ │ └── qmldir │ ├── WaylandCompositor.qmltypes │ ├── WlShell │ │ ├── libwaylandcompositorwlshellplugin.so │ │ ├── plugins.qmltypes │ │ └── qmldir │ └── XdgShell │ ├── libwaylandcompositorxdgshellplugin.so │ ├── plugins.qmltypes │ └── qmldir ├── share │ ├── applications │ │ └── dice.desktop │ ├── doc │ │ ├── libapparmor1 │ │ │ └── copyright │ │ ├── libasyncns0 │ │ │ └── copyright │ │ ├── libbsd0 │ │ │ └── copyright │ │ ├── libffi7 │ │ │ └── copyright │ │ ├── libflac8 │ │ │ └── copyright │ │ ├── libfreetype6 │ │ │ └── copyright │ │ ├── libgcrypt20 │ │ │ └── copyright │ │ ├── libglib2.0-0 │ │ │ └── copyright │ │ ├── libgssapi-krb5-2 │ │ │ └── copyright │ │ ├── libk5crypto3 │ │ │ └── copyright │ │ ├── libkrb5-3 │ │ │ └── copyright │ │ ├── libkrb5support0 │ │ │ └── copyright │ │ ├── liblz4-1 │ │ │ └── copyright │ │ ├── libogg0 │ │ │ └── copyright │ │ ├── libpng16-16 │ │ │ └── copyright │ │ ├── libpulse0 │ │ │ └── copyright │ │ ├── libsndfile1 │ │ │ └── copyright │ │ ├── libstdc++6 │ │ │ └── copyright │ │ ├── libvorbis0a │ │ │ └── copyright │ │ ├── libvorbisenc2 │ │ │ └── copyright │ │ ├── libwayland-server0 │ │ │ └── copyright │ │ ├── libwrap0 │ │ │ └── copyright │ │ ├── libxau6 │ │ │ └── copyright │ │ ├── libxcb-cursor0 │ │ │ └── copyright │ │ ├── libxcb-glx0 │ │ │ └── copyright │ │ ├── libxcb-icccm4 │ │ │ └── copyright │ │ ├── libxcb-image0 │ │ │ └── copyright │ │ ├── libxcb-keysyms1 │ │ │ └── copyright │ │ ├── libxcb-randr0 │ │ │ └── copyright │ │ ├── libxcb-render0 │ │ │ └── copyright │ │ ├── libxcb-render-util0 │ │ │ └── copyright │ │ ├── libxcb-shape0 │ │ │ └── copyright │ │ ├── libxcb-shm0 │ │ │ └── copyright │ │ ├── libxcb-sync1 │ │ │ └── copyright │ │ ├── libxcb-util1 │ │ │ └── copyright │ │ ├── libxcb-xfixes0 │ │ │ └── copyright │ │ ├── libxcb-xkb1 │ │ │ └── copyright │ │ ├── libxdmcp6 │ │ │ └── copyright │ │ ├── libxkbcommon0 │ │ │ └── copyright │ │ ├── libxkbcommon-x11-0 │ │ │ └── copyright │ │ └── libzstd1 │ │ └── copyright │ └── icons │ └── hicolor │ ├── 128x128 │ │ └── apps │ ├── 160x160 │ │ └── apps │ │ └── dice.png │ ├── 16x16 │ │ └── apps │ ├── 256x256 │ │ └── apps │ ├── 32x32 │ │ └── apps │ ├── 64x64 │ │ └── apps │ └── scalable │ └── apps └── translations ├── qtbase_ar.qm ├── qtbase_bg.qm ├── qtbase_ca.qm ├── qtbase_cs.qm ├── qtbase_da.qm ├── qtbase_de.qm ├── qtbase_en.qm ├── qtbase_es.qm ├── qtbase_fa.qm ├── qtbase_fi.qm ├── qtbase_fr.qm ├── qtbase_gd.qm ├── qtbase_he.qm ├── qtbase_hr.qm ├── qtbase_hu.qm ├── qtbase_it.qm ├── qtbase_ja.qm ├── qtbase_ko.qm ├── qtbase_lv.qm ├── qtbase_nl.qm ├── qtbase_nn.qm ├── qtbase_pl.qm ├── qtbase_pt_BR.qm ├── qtbase_ru.qm ├── qtbase_sk.qm ├── qtbase_tr.qm ├── qtbase_uk.qm ├── qtbase_zh_CN.qm ├── qtbase_zh_TW.qm ├── qtdeclarative_ar.qm ├── qtdeclarative_bg.qm ├── qtdeclarative_ca.qm ├── qtdeclarative_da.qm ├── qtdeclarative_de.qm ├── qtdeclarative_en.qm ├── qtdeclarative_es.qm ├── qtdeclarative_fa.qm ├── qtdeclarative_fi.qm ├── qtdeclarative_fr.qm ├── qtdeclarative_hr.qm ├── qtdeclarative_hu.qm ├── qtdeclarative_ja.qm ├── qtdeclarative_ko.qm ├── qtdeclarative_lv.qm ├── qtdeclarative_nl.qm ├── qtdeclarative_nn.qm ├── qtdeclarative_pl.qm ├── qtdeclarative_pt_BR.qm ├── qtdeclarative_ru.qm ├── qtdeclarative_sk.qm ├── qtdeclarative_tr.qm ├── qtdeclarative_uk.qm ├── qtdeclarative_zh_CN.qm └── qtdeclarative_zh_TW.qm 181 directories, 1640 files
  • 0 Votes
    7 Posts
    85 Views
    R

    @Axel-Spoerl
    Thanks, will do the same.

  • How to configure Qt5 for cross compilation?

    Unsolved
    1
    0 Votes
    1 Posts
    18 Views
    No one has replied
  • Unable to build static version of Qt 5.15.2

    Solved
    21
    0 Votes
    21 Posts
    4k Views
    J

    it generates this error with gcc11.x

    compile it specifically using gcc9.x (for e.g. gcc9.4) and it will compile without any problem

  • Get error in qtdepoly.targets at version 6.6.2 and 6.7

    Unsolved
    1
    0 Votes
    1 Posts
    13 Views
    No one has replied
  • qt.qpa.plugin: Could not find the Qt platform plugin

    Unsolved
    17
    0 Votes
    17 Posts
    203 Views
    A

    @jsulm
    Thank you very much for replies and your time, finally i found a solution to build a static Qt lib using this approach: https://forum.qt.io/topic/115827/build-on-linux-qt-xcb-option/12

  • Qt and Yocto

    Unsolved
    1
    0 Votes
    1 Posts
    30 Views
    No one has replied
  • MSVC compiler doesn't work

    Solved
    14
    0 Votes
    14 Posts
    156 Views
    cristian-adamC

    The MSVC compiler works 🎉

    The QML issue is something else, also the error is not revealed. I can't say what's wrong with it.