Revert to Qt 6.5.3 for macOS builds

A user reported having severe performance issues on macOS Tahoe
with v3.8-DEV2601 not present when using v3.7-sp1
Besides 6.5.3 is LTS and 6.6.1 is deprecated, so lets play safe
until we can upgrade to 6.8.3
This commit is contained in:
Alejandro Martinez
2026-01-17 13:56:31 -03:00
parent a00e27638f
commit 686f4310f9
3 changed files with 8 additions and 3 deletions

View File

@@ -81,8 +81,8 @@ init:
qmake --version
else
export OS_NAME=macos
# Setup QT 6.6
export QTDIR=$HOME/Qt/6.6/macos
# Setup QT 6.5
export QTDIR=$HOME/Qt/6.5/macos
export PATH=$QTDIR/bin:$PATH
qmake --version
# Setup Xcode 15.2

View File

@@ -160,7 +160,12 @@ void inride_BTDeviceInfoToSystemID(const QBluetoothDeviceInfo &devinfo, uint8_t
quint128 be_uuid128 = uuid.toUInt128();
// GC minimum Qt required for v3.8 is Qt6.5.3
#if QT_VERSION < 0x060600
addr64 = *(uint64_t*)be_uuid128.data;
#else
addr64 = *(uint64_t*)&be_uuid128;
#endif
}
uint8_t* paddr64 = (uint8_t*)&addr64;

View File

@@ -5,7 +5,7 @@
# #
###############################################################################
!versionAtLeast(QT_VERSION, 6.6.1):error("Use at least Qt version 6.6.1")
!versionAtLeast(QT_VERSION, 6.5.3):error("Use at least Qt version 6.5.3")
###==========================
### IMPORT USER CONFIGURATION