Changeset bc3438b for x/lib


Ignore:
Timestamp:
11/20/2023 10:30:58 PM (7 months ago)
Author:
Douglas R. Reno <renodr@…>
Branches:
12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18
Children:
82b5b5b3
Parents:
d71f68c9
Message:

Qt6: Skip building QtQuick3DPhysics

This module fails to build on i686 due to an issue with the bundled
version of the PhysX SDK.

Since we're already disabling Qt3D due to a problem with the bundled
copy of assimp, let's just skip the Qt Quick bindings as well.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • x/lib/qt6.xml

    rd71f68c9 rbc3438b  
    285285    </para>
    286286
    287 <screen revision="sysv"><userinput>./configure -prefix $QT6PREFIX   \
    288             -sysconfdir /etc/xdg \
    289             -dbus-linked         \
    290             -openssl-linked      \
    291             -system-sqlite       \
    292             -nomake examples     \
    293             -no-rpath            \
    294             -syslog              \
    295             -skip qt3d           \
    296             -skip qtwebengine    \
    297             -Wno-dev             &amp;&amp;
     287<screen revision="sysv"><userinput>./configure -prefix $QT6PREFIX      \
     288            -sysconfdir /etc/xdg    \
     289            -dbus-linked            \
     290            -openssl-linked         \
     291            -system-sqlite          \
     292            -nomake examples        \
     293            -no-rpath               \
     294            -syslog                 \
     295            -skip qt3d              \
     296            -skip qtquick3dphysics  \
     297            -skip qtwebengine       \
     298            -Wno-dev                &amp;&amp;
    298299ninja</userinput></screen>
    299300
    300 <screen revision="systemd"><userinput>
    301 ./configure -prefix $QT6PREFIX   \
    302             -sysconfdir /etc/xdg \
    303             -dbus-linked         \
    304             -openssl-linked      \
    305             -system-sqlite       \
    306             -nomake examples     \
    307             -no-rpath            \
    308             -journald            \
    309             -skip qt3d           \
    310             -skip qtwebengine    \
    311             -Wno-dev             &amp;&amp;
     301<screen revision="systemd"><userinput>./configure -prefix $QT6PREFIX      \
     302            -sysconfdir /etc/xdg    \
     303            -dbus-linked            \
     304            -openssl-linked         \
     305            -system-sqlite          \
     306            -nomake examples        \
     307            -no-rpath               \
     308            -journald               \
     309            -skip qt3d              \
     310            -skip qtquick3dphysics  \
     311            -skip qtwebengine       \
     312            -Wno-dev                &amp;&amp;
    312313ninja</userinput></screen>
    313314
     
    494495      linkend="qtwebengine"/> separately.
    495496    </para>
     497
     498    <para>
     499      <parameter>-skip qt3d</parameter>: This switch disables building the
     500      Qt Quick 3D Physics submodule. On 32-bit systems, this will cause the
     501      build process to fail with an inlining error in Qt6's bundled copy of
     502      the PhysX SDK.
     503    </para>
     504
    496505<!-- Auto
    497506    <para>
Note: See TracChangeset for help on using the changeset viewer.