Uploaded image for project: 'Qt'
  1. Qt
  2. QTBUG-87217

Duplicate target names in tests (top-level build)

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • P1: Critical
    • None
    • 6.0.0 Alpha
    • Build System: CMake
    • None
    • Suse SLES15 SP2
    • Linux/X11

    Description

       I downloaded Qt6 alpha release and tried to build it using the cmake build system. Cmake configure step fails because of several errors "add_custom_target cannot create target "xxx" because another target with the same name already exists."

      cmake version used was 3.17.0

      Commands used:

      tar xvfJ qt-everywhere-src-6.0.0-alpha.tar.xz
      mkdir qt6alpha_build
      cd qt6alpha_build
      CC=gcc-9 CXX=g++-9 ../qt-everywhere-src-6.0.0-alpha/configure -opensource -confirm-license -debug -cmake -prefix ~/temp/qt6alpha_install -c++std c++17
      

       
      cmake output:
       

      + cd qtbase
      + /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/configure -top-level -opensource -confirm-license -debug -cmake -prefix /home/wdobbe/temp/qt6alpha_install -c++std c++17
      '/usr/bin/cmake' '-DCMAKE_INSTALL_PREFIX=/home/wdobbe/temp/qt6alpha_install' '-DBUILD_TESTING=ON' '-DBUILD_EXAMPLES=ON' '-DCMAKE_BUILD_TYPE=Debug' '-DFEATURE_cxx14=ON' '-DFEATURE_cxx1z=ON' '-DFEATURE_cxx2a=OFF' '-DINPUT_commercial=no' '-DINPUT_confirm-license=yes' '-G' 'Ninja' '/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha'
      -- The CXX compiler identification is GNU 9.3.1
      -- The C compiler identification is GNU 9.3.1
      -- The ASM compiler identification is GNU
      -- Found assembler: /usr/bin/gcc-9
      -- Check for working CXX compiler: /usr/bin/g++-9
      -- Check for working CXX compiler: /usr/bin/g++-9 - works
      -- Detecting CXX compiler ABI info
      -- Detecting CXX compiler ABI info - done
      -- Detecting CXX compile features
      -- Detecting CXX compile features - done
      -- Check for working C compiler: /usr/bin/gcc-9
      -- Check for working C compiler: /usr/bin/gcc-9 - works
      -- Detecting C compiler ABI info
      -- Detecting C compiler ABI info - done
      -- Detecting C compile features
      -- Detecting C compile features - done
      -- Extracting architecture info from /home/wdobbe/temp/qt6alpha_build/qtbase/config.tests/arch/architecture_test.
      -- Performing Test HAVE_LD_VERSION_SCRIPT
      -- Performing Test HAVE_LD_VERSION_SCRIPT - Success
      -- CMAKE_HOST_SYSTEM: "Linux-5.3.18-24.15-default"
      -- CMAKE_HOST_SYSTEM_NAME: "Linux"
      -- CMAKE_HOST_SYSTEM_VERSION: "5.3.18-24.15-default"
      -- CMAKE_HOST_SYSTEM_PROCESSOR: "x86_64"
      -- CMAKE_SYSTEM: "Linux"
      -- CMAKE_SYSTEM_NAME: "Linux"
      -- CMAKE_SYSTEM_VERSION: "5.3.18-24.15-default"
      -- CMAKE_SYSTEM_PROCESSOR: "x86_64"
      -- CMAKE_CROSSCOMPILING: "FALSE"
      -- CMAKE_C_COMPILER: "/usr/bin/gcc-9" (9.3.1)
      -- CMAKE_CXX_COMPILER: "/usr/bin/g++-9" (9.3.1)
      <snip>
      -- Tool 'Qt6::qmake' will be built from source.
      -- Check if compiler accepts -pthread
      -- Check if compiler accepts -pthread - yes
      -- Found XKB: /usr/lib64/libxkbcommon.so (found suitable version "0.8.2", minimum required is "0.5.0") 
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'QtSvg' 
      -- Running syncqt for module: 'QtSvgWidgets' 
      -- Found PythonInterp: /usr/bin/python3.6 (found version "3.6.10") 
      -- Tool 'Qt6::qmltyperegistrar' will be built from source.
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'QtQml' 
      -- Performing Test HAVE_cxx14_make_unique
      -- Performing Test HAVE_cxx14_make_unique - Success
      -- Performing Test HAVE_pointer_32bit
      -- Performing Test HAVE_pointer_32bit - Failed
      -- Performing Test HAVE_pointer_64bit
      -- Performing Test HAVE_pointer_64bit - Success
      -- Performing Test HAVE_arm_thumb
      -- Performing Test HAVE_arm_thumb - Failed
      -- Performing Test HAVE_arm_fp
      -- Performing Test HAVE_arm_fp - Success
      -- Running syncqt for module: 'QtQmlModels' 
      -- Running syncqt for module: 'QtQmlWorkerScript' 
      -- Running syncqt for module: 'QtQuick' 
      -- Running syncqt for module: 'QtQuickShapes' 
      -- Running syncqt for module: 'QtQuickTest' 
      -- Running syncqt for module: 'QtQuickParticles' 
      -- Running syncqt for module: 'QtQuickWidgets' 
      -- Running syncqt for module: 'QtPacketProtocol' 
      -- Tool 'Qt6::qmlcachegen' will be built from source.
      -- Running syncqt for module: 'QtQmlDebug' 
      -- Tool 'Qt6::qmllint' will be built from source.
      -- Tool 'Qt6::qmlimportscanner' will be built from source.
      -- Tool 'Qt6::qmlformat' will be built from source.
      -- Tool 'Qt6::qml' will be built from source.
      -- Tool 'Qt6::qmlprofiler' will be built from source.
      -- Tool 'Qt6::qmlpreview' will be built from source.
      -- Tool 'Qt6::qmlscene' will be built from source.
      -- Tool 'Qt6::qmlplugindump' will be built from source.
      -- Tool 'Qt6::qmltestrunner' will be built from source.
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_toolsupport" because another
       target with the same name already exists. The existing target is an
       executable created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/other/toolsupport".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qtdeclarative/tests/auto/toolsupport/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_toolsupport_check" because
       another target with the same name already exists. The existing target is a
       custom target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/other/toolsupport".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qtdeclarative/tests/auto/toolsupport/CMakeLists.txt:7 (qt_add_test)
      <snip>
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'Qt3DCore' 
      -- Running syncqt for module: 'Qt3DRender' 
      -- Running syncqt for module: 'Qt3DExtras' 
      -- Running syncqt for module: 'Qt3DLogic' 
      -- Running syncqt for module: 'Qt3DInput' 
      -- Running syncqt for module: 'Qt3DAnimation' 
      -- Running syncqt for module: 'Qt3DQuick' 
      -- Running syncqt for module: 'Qt3DQuickRender' 
      -- Running syncqt for module: 'Qt3DQuickScene2D' 
      -- Running syncqt for module: 'Qt3DQuickExtras' 
      -- Running syncqt for module: 'Qt3DQuickInput' 
      -- Running syncqt for module: 'Qt3DQuickAnimation' 
      -- Could NOT find WrapAssimp (missing: WrapAssimp_FOUND) (Required is at least version "5")
      -- Performing Test Assimp
      -- Performing Test Assimp - Failed
      -- Performing Test Autodesk FBX
      -- Performing Test Autodesk FBX - Failed
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_qanimationgroup" because another
       target with the same name already exists. The existing target is an
       executable created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/animation/qanimationgroup".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt3d/tests/auto/animation/qanimationgroup/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_qanimationgroup_check" because
       another target with the same name already exists. The existing target is a
       custom target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/animation/qanimationgroup".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt3d/tests/auto/animation/qanimationgroup/CMakeLists.txt:7 (qt_add_test)
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'QtNetworkAuth' 
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'QtQuick3DUtils' 
      -- Running syncqt for module: 'QtQuick3DAssetImport' 
      -- Could NOT find WrapAssimp (missing: WrapAssimp_FOUND) (Required is at least version "5")
      -- Running syncqt for module: 'QtQuick3DRuntimeRender' 
      -- Running syncqt for module: 'QtQuick3D' 
      -- Tool 'Qt6::balsam' will be built from source.
      -- Tool 'Qt6::meshdebug' will be built from source.
      -- Tool 'Qt6::shadergen' will be built from source.
      -- Using source syncqt found at: /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/bin/syncqt.pl
      -- Running syncqt for module: 'QtCore5Compat' 
      -- Performing Test HAVE_ICONV
      -- Performing Test HAVE_ICONV - Success
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_qdebug" because another target
       with the same name already exists. The existing target is an executable
       created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/io/qdebug".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/io/qdebug/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_qdebug_check" because another
       target with the same name already exists. The existing target is a custom
       target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/io/qdebug".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/io/qdebug/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_json" because another target with
       the same name already exists. The existing target is an executable created
       in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/serialization/json".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/serialization/json/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_json_check" because another
       target with the same name already exists. The existing target is a custom
       target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/serialization/json".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/serialization/json/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_qtextstream" because another
       target with the same name already exists. The existing target is an
       executable created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/serialization/qtextstream/test".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/serialization/qtextstream/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_qtextstream_check" because
       another target with the same name already exists. The existing target is a
       custom target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/serialization/qtextstream/test".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/serialization/qtextstream/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtExecutableHelpers.cmake:34 (add_executable):
       add_executable cannot create target "tst_qstringbuilder1" because another
       target with the same name already exists. The existing target is an
       executable created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/text/qstringbuilder/qstringbuilder1".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtTestHelpers.cmake:176 (qt_internal_add_executable)
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt:7 (qt_add_test)
      
      CMake Error at qtbase/cmake/QtTestHelpers.cmake:273 (add_custom_target):
       add_custom_target cannot create target "tst_qstringbuilder1_check" because
       another target with the same name already exists. The existing target is a
       custom target created in source directory
       "/home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/tests/auto/corelib/text/qstringbuilder/qstringbuilder1".
       See documentation for policy CMP0002 for more details.
      Call Stack (most recent call first):
       qtbase/cmake/QtCompatibilityHelpers.cmake:70 (qt_internal_add_test)
       qt5compat/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt:7 (qt_add_test)
      
      -- The following packages have been found:
      * QtBuildInternals
       * ZSTD (required version >= 1.3), ZSTD compression library, <https://github.com/facebook/zstd>
       * WrapDBus1 (required version >= 1.2)
       * Libudev
       * OpenSSL
       * OpenGL
       * WrapPCRE2
       * GLIB2, Event loop and utility library, <https://wiki.gnome.org/Projects/GLib>
       * ICU
       * Libsystemd
       * Libb2
       * WrapRt
       * LTTngUST
       * Libproxy
       * WrapOpenSSLHeaders
       * WrapOpenSSL
       * GSSAPI, Generic Security Services Application Program Interface
       * WrapHarfbuzz
       * WrapPNG
       * ATSPI2
       * WrapSystemFreetype (required version >= 2.2.0)
       * gbm, Mesa gbm library., <http://www.mesa3d.org>
       * WrapSystemHarfbuzz (required version >= 2.6.0)
       * WrapSystemPNG
       * GLESv2
       * X11_XCB, A compatibility library for code that translates Xlib API calls into XCB calls, <http://xorg.freedesktop.org/>
       * XCB (required version >= 1.12), X protocol C-language Binding, <http://xcb.freedesktop.org>
       * XKB_COMMON_X11 (required version >= 0.5.0)
       * XRender (required version >= 0.6)
       * Libinput, Library to handle input devices in Wayland compositors and to provide a generic X.Org input driver., <http://www.freedesktop.org/wiki/Software/libinput/>
       * Mtdev
       * Libdrm, Userspace interface to kernel DRM services., <https://wiki.freedesktop.org/dri/>
       * SQLite3
       * ODBC
       * WrapFreetype
       * GTK3
       * X11
       * Tslib
       * Cups
       * PythonInterp
       * Qt6DBusTools (required version >= 6.0.0)
       * Qt6DBus
       * Qt6QmlDevTools
       * Qt6PrintSupport
       * Qt6OpenGLWidgets
       * LLVM
       * Clang
       * WrapLibClang (required version >= 8)
       * Qt6Help
       * Qt6UiTools
       * Qt6Designer
       * Qt6UiPlugin
       * Qt6LinguistTools (required version >= 6.0.0)
       * Qt6Linguist
       * JPEG
       * Qt6QuickTest
       * Qt6QuickControls2
       * Qt6Sql
       * WaylandScanner, Executable that converts XML protocol files to C code, <https://wayland.freedesktop.org/>
       * XComposite
       * EGL, A platform-agnostic mechanism for creating rendering surfaces for use with other graphics libraries, such as OpenGL|ES and OpenVG., <https://www.khronos.org/egl/>
       * Qt6WaylandClient
       * Wayland (required version >= 1.15), C library implementation of the Wayland protocol: a protocol for a compositor to talk to its clients, <http://wayland.freedesktop.org>
       * Qt6WaylandScannerTools (required version >= 6.0.0)
       * Qt6WaylandCompositor
       * Qt6QuickWidgets
       * Qt6Concurrent
       * Qt6NetworkAuth
       * Qt6QmlTools (required version >= 6.0.0)
       * Qt6Qml
       * Qt6QmlModels (required version >= 6.0.0)
       * Qt6OpenGL (required version >= 6.0.0)
       * Qt6ShaderToolsTools (required version >= 6.0.0)
       * Qt6ShaderTools
       * Qt6Quick
       * Qt6Quick3DTools (required version >= 6.0.0)
       * Qt6Quick3DUtils (required version >= 6.0.0)
       * Qt6Quick3DAssetImport (required version >= 6.0.0)
       * Qt6Quick3DRuntimeRender (required version >= 6.0.0)
       * Qt6Quick3D
       * Qt6BuildInternals
       * Qt6Network
       * Qt6Xml
       * Qt6Test
       * WrapIconv
       * WrapAtomic
       * Qt6CoreTools (required version >= 6.0.0)
       * Qt6Core
       * WrapOpenGL
       * Vulkan
       * XKB (required version >= 0.5.0), XKB API common to servers and clients., <http://xkbcommon.org>
       * Qt6GuiTools (required version >= 6.0.0)
       * Qt6Gui
       * Qt6WidgetsTools (required version >= 6.0.0)
       * Qt6Widgets
       * Threads
       * Qt6Core5Compat
       * Qt6
      -- The following OPTIONAL packages have not been found:
      * WrapDoubleConversion
       * WrapSystemPCRE2 (required version >= 10.20)
       * Slog2
       * WrapBrotli
       * DirectFB
       * DB2, IBM DB2 client library, <https://www.ibm.com>
       * MySQL, MySQL client library, <https://www.mysql.com>
       * PostgreSQL
       * Oracle, Oracle client library, <https://www.oracle.com>
       * Qt6AxContainer
       * Jasper
       * WrapJasper
       * TIFF
       * WrapWebP
       * Waylandkms
       * Qt6Gamepad
       * WrapAssimp (required version >= 5)
      Configure summary:
      Building for: linux-g++ (x86_64, CPU features: mmx sse sse2)
      Compiler: unknown (GNU) 9.3.1
      Build options:
       Mode .................................. debug
       Optimize debug build .................. yes
       Building shared libraries ............. yes
       Using C standard ...................... C11
       Using C++ standard .................... C++17
       Using ccache .......................... no
       Relocatable ........................... yes
       Using precompiled headers ............. yes
       Using LTCG ............................ no
       Target compiler supports:
       SSE ................................. SSE2 SSE3 SSSE3 SSE4.1 SSE4.2
       AVX ................................. AVX AVX2
       AVX512 .............................. F ER CD PF DQ BW VL IFMA VBMI
       Other x86 ........................... F16C RDRAND
       Intrinsics without -mXXX option ..... yes
       Sanitizers:
       Addresses ........................... no
       Threads ............................. no
       Memory .............................. no
       Fuzzer (instrumentation only) ....... no
       Undefined ........................... no
       Build parts ........................... libs examples tests tools
      Qt modules and options:
       Qt Concurrent ......................... yes
       Qt D-Bus .............................. yes
       Qt D-Bus directly linked to libdbus ... yes
       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 .................................. yes
       Using system zlib ..................... yes
       Zstandard support ..................... yes
      Qt Core:
       DoubleConversion ...................... yes
       Using system DoubleConversion ....... no
       GLib .................................. yes
       ICU ................................... yes
       Using system libb2 .................... yes
       Built-in copy of the MIME database .... yes
       Tracing backend ....................... <none>
       Logging backends:
       journald ............................ no
       syslog .............................. no
       slog2 ............................... no
       PCRE2 ................................. yes
       Using system PCRE2 .................. no
      Qt Sql:
       SQL item models ....................... yes
      Qt Network:
       getifaddrs() .......................... yes
       IPv6 ifname ........................... yes
       libproxy .............................. no
       OpenSSL ............................... yes
       Qt directly linked to OpenSSL ....... no
       OpenSSL 1.1 ........................... yes
       DTLS .................................. yes
       OCSP-stapling ......................... yes
       SCTP .................................. no
       Use system proxies .................... yes
       GSSAPI ................................ yes
       Brotli Decompression Support .......... no
      Qt Gui:
       Accessibility ......................... yes
       FreeType .............................. yes
       Using system FreeType ............... yes
       HarfBuzz .............................. yes
       Using system HarfBuzz ............... yes
       Fontconfig ............................ yes
       Image formats:
       GIF ................................. yes
       ICO ................................. yes
       JPEG ................................ yes
       Using system libjpeg .............. yes
       PNG ................................. yes
       Using system libpng ............... yes
       Text formats:
       HtmlParser .......................... yes
       CssParser ........................... yes
       OdfWriter ........................... yes
       MarkdownReader ...................... yes
       Using system libmd4c .............. no
       MarkdownWriter ...................... yes
       EGL ................................... yes
       OpenVG ................................ no
       OpenGL:
       Desktop OpenGL ...................... yes
       OpenGL ES 2.0 ....................... no
       OpenGL ES 3.0 ....................... no
       OpenGL ES 3.1 ....................... no
       OpenGL ES 3.2 ....................... no
       Vulkan ................................ yes
       Session Management .................... yes
      Features used by QPA backends:
       evdev ................................. yes
       libinput .............................. yes
       INTEGRITY HID ......................... no
       mtdev ................................. yes
       tslib ................................. yes
       xkbcommon ............................. yes
       X11 specific:
       XLib ................................ yes
       XCB Xlib ............................ yes
       EGL on X11 .......................... yes
       xkbcommon-x11 ....................... yes
      QPA backends:
       DirectFB .............................. no
       EGLFS ................................. yes
       EGLFS details:
       EGLFS OpenWFD ....................... no
       EGLFS i.Mx6 ......................... no
       EGLFS i.Mx6 Wayland ................. no
       EGLFS RCAR .......................... no
       EGLFS EGLDevice ..................... yes
       EGLFS GBM ........................... yes
       EGLFS VSP2 .......................... no
       EGLFS Mali .......................... no
       EGLFS Raspberry Pi .................. no
       EGLFS X11 ........................... yes
       LinuxFB ............................... yes
       VNC ................................... yes
       QNX:
       lgmon ............................... no
       IMF ................................. no
       XCB:
       Using system-provided xcb-xinput .... yes
       Native painting (experimental) ...... no
       GL integrations:
       GLX Plugin ........................ yes
       XCB GLX ......................... yes
       EGL-X11 Plugin .................... yes
       Windows:
       Direct 2D ........................... no
       Direct 2D 1.1 ....................... no
       DirectWrite ......................... no
       DirectWrite 3 ....................... no
      Qt Widgets:
       GTK+ .................................. yes
       Styles ................................ Fusion Windows
      Qt Testlib:
       Tester for item models ................ yes
      Qt PrintSupport:
       CUPS .................................. yes
      Qt Sql Drivers:
       DB2 (IBM) ............................. no
       InterBase ............................. no
       MySql ................................. no
       OCI (Oracle) .......................... no
       ODBC .................................. yes
       PostgreSQL ............................ no
       SQLite ................................ yes
       Using system provided SQLite ........ no
      Qt QML:
       QML network support ................... yes
       QML debugging and profiling support ... yes
       QML just-in-time compiler ............. yes
       QML sequence object ................... yes
       QML XML http request .................. yes
       QML Locale ............................ yes
      Qt QML Models:
       QML list model ........................ yes
       QML delegate model .................... yes
      Qt Quick:
       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 Tools:
       Qt Assistant .......................... yes
       QDoc .................................. yes
       Clang-based lupdate parser ............ yes
       Qt Designer ........................... yes
       Qt Distance Field Generator ........... yes
       kmap2qmap ............................. yes
       Qt Linguist ........................... yes
       Mac Deployment Tool ................... no
       pixeltool ............................. yes
       qdbus ................................. yes
       qev ................................... yes
       Qt Attributions Scanner ............... yes
       qtdiag ................................ yes
       qtpaths ............................... yes
       qtplugininfo .......................... yes
       Windows deployment tool ............... no
      Further Image Formats:
       JasPer ................................ no
       MNG ................................... no
       TIFF .................................. no
       Using system libtiff ................ no
       WEBP .................................. no
       Using system libwebp ................ no
      Qt Quick Templates 2:
       Hover support ......................... yes
       Multi-touch support ................... yes
      Qt Quick Controls 2:
       Styles ................................ Basic Fusion Imagine Material Universal macOS Windows
      Qt Wayland Drivers:
       EGL ................................... yes
       Raspberry Pi .......................... no
       XComposite EGL ........................ yes
       XComposite GLX ........................ yes
       DRM EGL ............................... yes
       libhybris EGL ......................... no
       Linux dma-buf server buffer integration yes
       Vulkan-based server buffer integration no
       Shm emulation server buffer integration yes
      Qt Wayland Client Shell Integrations:
       xdg-shell ............................. yes
       xdg-shell unstable v5 (deprecated) .... yes
       xdg-shell unstable v6 ................. yes
       ivi-shell ............................. yes
       wl-shell (deprecated) ................. yes
      Qt Wayland Client ....................... yes
      Qt Wayland Compositor ................... yes
      Qt Wayland Compositor Layer Plugins:
       VSP2 hardware layer integration ....... no
      Qt Wayland Drivers:
       EGL ................................... yes
       Raspberry Pi .......................... no
       XComposite EGL ........................ yes
       XComposite GLX ........................ yes
       DRM EGL ............................... yes
       libhybris EGL ......................... no
       Linux dma-buf server buffer integration yes
       Vulkan-based server buffer integration no
       Shm emulation server buffer integration yes
      Qt Wayland Client Shell Integrations:
       xdg-shell ............................. yes
       xdg-shell unstable v5 (deprecated) .... yes
       xdg-shell unstable v6 ................. yes
       ivi-shell ............................. yes
       wl-shell (deprecated) ................. yes
      Qt Wayland Client ....................... yes
      Qt Wayland Compositor ................... yes
      Qt Wayland Compositor Layer Plugins:
       VSP2 hardware layer integration ....... no
      Qt3D Core:
       Use SSE2 instructions ................. yes
       Use AVX2 instructions ................. no
       Animation aspect ...................... yes
       Extras aspect ......................... yes
       Input aspect .......................... yes
       Logic aspect .......................... yes
       Render aspect ......................... yes
      Qt3D Scene Parsers:
       Assimp ................................ yes
       System Assimp ......................... no
      Qt3D Geometry Loaders:
       Autodesk FBX .......................... no
      Qt3D Renderers:
       OpenGL Renderer ....................... yes
       RHI Renderer .......................... yes
      QtQuick3D:
       Assimp ................................ yes
       System Assimp ......................... no
      Qt 5 Compatibility Libraries:
       iconv ................................. no
      Note: No wayland-egl support detected. Cross-toolkit compatibility disabled.
      Note: No wayland-egl support detected. Cross-toolkit compatibility disabled.
      Qt is now configured for building. Just run 'cmake --build . --parallel'
      Once everything is built, you must run 'cmake --install .'
      Qt will be installed into '/home/wdobbe/temp/qt6alpha_install'
      To configure and build other Qt modules, you can use the following convenience script:
       /bin/qt-cmake-private
      If reconfiguration fails for some reason, try to remove 'CMakeCache.txt' from the build directory
      -- Configuring incomplete, errors occurred!
      See also "/home/wdobbe/temp/qt6alpha_build/CMakeFiles/CMakeOutput.log".
      See also "/home/wdobbe/temp/qt6alpha_build/CMakeFiles/CMakeError.log".
      CMake Error at /home/wdobbe/temp/qt-everywhere-src-6.0.0-alpha/qtbase/cmake/QtProcessConfigureArgs.cmake:676 (message):
       CMake exited with code 1.
      

       

      Attachments

        Issue Links

          No reviews matched the request. Check your Options in the drop-down menu of this sections header.

          Activity

            People

              kkohne Kai Köhne
              arthurd Arthur Dobbe
              Votes:
              0 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved:

                Gerrit Reviews

                  There are no open Gerrit changes