Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Michael Jackson
For our application we grabbed the Qt 5.15 build script that Kitware used for 
universal binary CMake and used that to build Qt 5.15.2 on our M1 mac and have 
been using that for some beta testers. So far no one has complained about M1 
specific issues. We also did *NOT* build all of Qt5, just the parts that we 
needed. Build script below.


=
#!/usr/bin/env bash

# Run this script on a macOS x86_64 host to generate Qt universal binaries.
#
# This script requires the 'makeuniversal' tool from:
#
#   https://github.com/fizzyade/makeuniversal
#
# Build it with an existing local Qt installation first.
#
# Set the PATH environment variable to contain the location of 'makeuniversal'.


umask 022

CpuBrand=`sysctl -n machdep.cpu.brand_string | grep "Apple" | wc -l`
if [ ${CpuBrand} != 0 ];
then
  ARCH=arm64
else
  ARCH=x86_64
fi

set -e
set -x

VERSION=5.15.2

DEV_ROOT=$HOME/DREAM3D-Dev

cd $DEV_ROOT
rm -rf qt-$VERSION-$ARCH
mkdir qt-$VERSION-$ARCH
cd qt-$VERSION-$ARCH
../qt-everywhere-src-$VERSION/configure \
  --prefix=/Users/Shared/DREAM3D_SDK/Qt$VERSION/$VERSION/clang_$ARCH \
  --docdir=/Users/Shared/DREAM3D_SDK/Qt$VERSION/Docs/Qt-$VERSION \
  -platform macx-clang \
  -device-option QMAKE_APPLE_DEVICE_ARCHS=$ARCH \
  -device-option QMAKE_MACOSX_DEPLOYMENT_TARGET=10.13 \
  -release \
  -opensource -confirm-license \
  -gui \
  -widgets \
  -no-gif \
  -no-icu \
  -no-pch \
  -no-angle \
  -no-dbus \
  -no-harfbuzz \
  -skip declarative \
  -skip multimedia \
  -skip qtcanvas3d \
  -skip qtcharts \
  -skip qtconnectivity \
  -skip qtdeclarative \
  -skip qtgamepad \
  -skip qtlocation \
  -skip qtmultimedia \
  -skip qtnetworkauth \
  -skip qtpurchasing \
  -skip qtremoteobjects \
  -skip qtscript \
  -skip qtsensors \
  -skip qtserialbus \
  -skip qtserialport \
  -skip qtwebchannel \
  -skip qtwebengine \
  -skip qtwebsockets \
  -skip qtxmlpatterns \
  -nomake examples \
  -nomake tests \
  -make tools

# Need to install the tools BEFORE generating the docs
make -j -k
make install

# Generate the Docs and install them
make docs
make install_docs


--
Mike Jackson


From: Interest  on behalf of Nuno Santos 

Date: Friday, May 7, 2021 at 6:07 AM
To: Tor Arne Vestbø 
Cc: Qt development mailing list , Qt Interest 

Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

Tor,

What about building Qt 5.15.X for M1 Macs? 

Is there any kind of wiki resource out there?

Regards,

Nuno


On 7 May 2021, at 10:47, Tor Arne Vestbø <mailto:tor.arne.ves...@qt.io> wrote:

Qt 6.0 and above has official support for Big Sur:

https://doc.qt.io/archives/qt-6.0/macos.html

5.15 is not yet officially supported, but should work fine as well, so please 
report any issues in JIRA, thanks!

Cheers,
Tor Arne


On 7 May 2021, at 11:00, coroberti <mailto:corobe...@gmail.com> wrote:

Dear Tukka and others,
Since September Big Sur is a reality.

Which Qt-version supports correctly QWidgets for this platform for
open-source development.

If there's no such version, when the support is planned if ever.

I'd appreciate not to hijack this question for any discussions beyond the
very narrow scope of this question.

Thanks,

Kind regards,
Robert
___
Development mailing list
mailto:developm...@qt-project.org
https://lists.qt-project.org/listinfo/development

___
Interest mailing list
mailto:Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest

___ Interest mailing list 
Interest@qt-project.org https://lists.qt-project.org/listinfo/interest 


___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Nuno Santos
I see! Thanks for your reply.

Best

> On 7 May 2021, at 12:32, Tuukka Turunen  wrote:
> 
>  
> Hi,
>  
> By “rough edges”, I was referring to no pre-built binaries and functionality 
> not tested so there can be issues even though a lot of things will probably 
> work just fine (Qt in general has been supporting ARM since ages).
>  
> Yours,
>  
> Tuukka
>  
> From: Interest  on behalf of Nuno Santos 
> 
> Date: Friday, 7. May 2021 at 14.05
> To: Qt Interest 
> Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
> 
> Thanks for your reply.
>  
> Can you please be more specific about the “rough edges”?
>  
> I know people that have been able to compile Qt 5.15 from the source with M1 
> and so far so good.
>  
> Thanks!
>  
> Regards,
>  
> Nuno
> 
> 
> On 7 May 2021, at 11:16, Tuukka Turunen  <mailto:tuukka.turu...@qt.io>> wrote:
>  
> Hi,
>  
> Supporting Apple silicon is something we are actively working to have in 
> place for Qt 6.2 including full CI coverage etc.
>  
> To some extent things will work also with Qt 5.15 if you build yourself, but 
> there are some rough edges (and Qt 5.15 is not tested for M1).
>  
> Yours,
>  
> Tuukka
>  
> From: Interest  <mailto:interest-boun...@qt-project.org>> on behalf of Nuno Santos 
> mailto:nuno.san...@imaginando.pt>>
> Date: Friday, 7. May 2021 at 13.10
> To: Tor Arne Vestbø mailto:tor.arne.ves...@qt.io>>
> Cc: Qt development mailing list  <mailto:developm...@qt-project.org>>, Qt Interest  <mailto:interest@qt-project.org>>
> Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
> 
> Tor,
>  
> What about building Qt 5.15.X for M1 Macs? 
>  
> Is there any kind of wiki resource out there?
>  
> Regards,
>  
> Nuno
> 
> 
> 
> On 7 May 2021, at 10:47, Tor Arne Vestbø  <mailto:tor.arne.ves...@qt.io>> wrote:
>  
> Qt 6.0 and above has official support for Big Sur:
>  
> https://doc.qt.io/archives/qt-6.0/macos.html 
> <https://doc.qt.io/archives/qt-6.0/macos.html>
>  
> 5.15 is not yet officially supported, but should work fine as well, so please 
> report any issues in JIRA, thanks!
>  
> Cheers,
> Tor Arne
> 
> 
> 
> On 7 May 2021, at 11:00, coroberti  <mailto:corobe...@gmail.com>> wrote:
>  
> Dear Tukka and others,
> Since September Big Sur is a reality.
> 
> Which Qt-version supports correctly QWidgets for this platform for
> open-source development.
> 
> If there's no such version, when the support is planned if ever.
> 
> I'd appreciate not to hijack this question for any discussions beyond the
> very narrow scope of this question.
> 
> Thanks,
> 
> Kind regards,
> Robert
> ___
> Development mailing list
> developm...@qt-project.org <mailto:developm...@qt-project.org>
> https://lists.qt-project.org/listinfo/development 
> <https://lists.qt-project.org/listinfo/development>
>  
> ___
> Interest mailing list
> Interest@qt-project.org <mailto:Interest@qt-project.org>
> https://lists.qt-project.org/listinfo/interest 
> <https://lists.qt-project.org/listinfo/interest>
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Tuukka Turunen

Hi,

By “rough edges”, I was referring to no pre-built binaries and functionality 
not tested so there can be issues even though a lot of things will probably 
work just fine (Qt in general has been supporting ARM since ages).

Yours,

Tuukka

From: Interest  on behalf of Nuno Santos 

Date: Friday, 7. May 2021 at 14.05
To: Qt Interest 
Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
Thanks for your reply.

Can you please be more specific about the “rough edges”?

I know people that have been able to compile Qt 5.15 from the source with M1 
and so far so good.

Thanks!

Regards,

Nuno


On 7 May 2021, at 11:16, Tuukka Turunen 
mailto:tuukka.turu...@qt.io>> wrote:

Hi,

Supporting Apple silicon is something we are actively working to have in place 
for Qt 6.2 including full CI coverage etc.

To some extent things will work also with Qt 5.15 if you build yourself, but 
there are some rough edges (and Qt 5.15 is not tested for M1).

Yours,

Tuukka

From: Interest 
mailto:interest-boun...@qt-project.org>> on 
behalf of Nuno Santos 
mailto:nuno.san...@imaginando.pt>>
Date: Friday, 7. May 2021 at 13.10
To: Tor Arne Vestbø mailto:tor.arne.ves...@qt.io>>
Cc: Qt development mailing list 
mailto:developm...@qt-project.org>>, Qt Interest 
mailto:interest@qt-project.org>>
Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
Tor,

What about building Qt 5.15.X for M1 Macs?

Is there any kind of wiki resource out there?

Regards,

Nuno



On 7 May 2021, at 10:47, Tor Arne Vestbø 
mailto:tor.arne.ves...@qt.io>> wrote:

Qt 6.0 and above has official support for Big Sur:

https://doc.qt.io/archives/qt-6.0/macos.html

5.15 is not yet officially supported, but should work fine as well, so please 
report any issues in JIRA, thanks!

Cheers,
Tor Arne



On 7 May 2021, at 11:00, coroberti 
mailto:corobe...@gmail.com>> wrote:

Dear Tukka and others,
Since September Big Sur is a reality.

Which Qt-version supports correctly QWidgets for this platform for
open-source development.

If there's no such version, when the support is planned if ever.

I'd appreciate not to hijack this question for any discussions beyond the
very narrow scope of this question.

Thanks,

Kind regards,
Robert
___
Development mailing list
developm...@qt-project.org<mailto:developm...@qt-project.org>
https://lists.qt-project.org/listinfo/development

___
Interest mailing list
Interest@qt-project.org<mailto:Interest@qt-project.org>
https://lists.qt-project.org/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Tor Arne Vestbø

> On 7 May 2021, at 12:28, coroberti  wrote:
> 
> Dear Tor Arne,
> Thank you for your reply.
> It's less useful since Qt-6 is a phantom, beta, and it will remain so
> for a year or more.

A wise person once said:

> I'd appreciate not to hijack this question for any discussions beyond the
> very narrow scope of this question.

 

Cheers,
Tor Arne

> 
> Kind regards,
> Robert Iakobashvili
> 
> 
> On Fri, May 7, 2021 at 12:47 PM Tor Arne Vestbø  wrote:
>> 
>> Qt 6.0 and above has official support for Big Sur:
>> 
>> https://doc.qt.io/archives/qt-6.0/macos.html
>> 
>> 5.15 is not yet officially supported, but should work fine as well, so 
>> please report any issues in JIRA, thanks!
>> 
>> Cheers,
>> Tor Arne
>> 
>> On 7 May 2021, at 11:00, coroberti  wrote:
>> 
>> Dear Tukka and others,
>> Since September Big Sur is a reality.
>> 
>> Which Qt-version supports correctly QWidgets for this platform for
>> open-source development.
>> 
>> If there's no such version, when the support is planned if ever.
>> 
>> I'd appreciate not to hijack this question for any discussions beyond the
>> very narrow scope of this question.
>> 
>> Thanks,
>> 
>> Kind regards,
>> Robert
>> ___
>> Development mailing list
>> developm...@qt-project.org
>> https://lists.qt-project.org/listinfo/development
>> 
>> 

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Nuno Santos
Thanks for your reply.

Can you please be more specific about the “rough edges”?

I know people that have been able to compile Qt 5.15 from the source with M1 
and so far so good.

Thanks!

Regards,

Nuno

> On 7 May 2021, at 11:16, Tuukka Turunen  wrote:
> 
> Hi,
>  
> Supporting Apple silicon is something we are actively working to have in 
> place for Qt 6.2 including full CI coverage etc.
>  
> To some extent things will work also with Qt 5.15 if you build yourself, but 
> there are some rough edges (and Qt 5.15 is not tested for M1).
>  
> Yours,
>  
> Tuukka
>  
> From: Interest  on behalf of Nuno Santos 
> 
> Date: Friday, 7. May 2021 at 13.10
> To: Tor Arne Vestbø 
> Cc: Qt development mailing list , Qt Interest 
> 
> Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
> 
> Tor,
>  
> What about building Qt 5.15.X for M1 Macs? 
>  
> Is there any kind of wiki resource out there?
>  
> Regards,
>  
> Nuno
> 
> 
> On 7 May 2021, at 10:47, Tor Arne Vestbø  <mailto:tor.arne.ves...@qt.io>> wrote:
>  
> Qt 6.0 and above has official support for Big Sur:
>  
> https://doc.qt.io/archives/qt-6.0/macos.html 
> <https://doc.qt.io/archives/qt-6.0/macos.html>
>  
> 5.15 is not yet officially supported, but should work fine as well, so please 
> report any issues in JIRA, thanks!
>  
> Cheers,
> Tor Arne
> 
> 
> On 7 May 2021, at 11:00, coroberti  <mailto:corobe...@gmail.com>> wrote:
>  
> Dear Tukka and others,
> Since September Big Sur is a reality.
> 
> Which Qt-version supports correctly QWidgets for this platform for
> open-source development.
> 
> If there's no such version, when the support is planned if ever.
> 
> I'd appreciate not to hijack this question for any discussions beyond the
> very narrow scope of this question.
> 
> Thanks,
> 
> Kind regards,
> Robert
> ___
> Development mailing list
> developm...@qt-project.org <mailto:developm...@qt-project.org>
> https://lists.qt-project.org/listinfo/development 
> <https://lists.qt-project.org/listinfo/development>
>  
> ___
> Interest mailing list
> Interest@qt-project.org <mailto:Interest@qt-project.org>
> https://lists.qt-project.org/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread coroberti
Thanks, Tuukka,
for the information.

Kind regards,
Robert Iakobashvili


On Fri, May 7, 2021 at 1:18 PM Tuukka Turunen  wrote:
>
> Hi,
>
>
>
> Supporting Apple silicon is something we are actively working to have in 
> place for Qt 6.2 including full CI coverage etc.
>
>
>
> To some extent things will work also with Qt 5.15 if you build yourself, but 
> there are some rough edges (and Qt 5.15 is not tested for M1).
>
>
>
> Yours,
>
>
>
> Tuukka
>
>
>
> From: Interest  on behalf of Nuno Santos 
> 
> Date: Friday, 7. May 2021 at 13.10
> To: Tor Arne Vestbø 
> Cc: Qt development mailing list , Qt Interest 
> 
> Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
>
> Tor,
>
>
>
> What about building Qt 5.15.X for M1 Macs?
>
>
>
> Is there any kind of wiki resource out there?
>
>
>
> Regards,
>
>
>
> Nuno
>
>
>
> On 7 May 2021, at 10:47, Tor Arne Vestbø  wrote:
>
>
>
> Qt 6.0 and above has official support for Big Sur:
>
>
>
> https://doc.qt.io/archives/qt-6.0/macos.html
>
>
>
> 5.15 is not yet officially supported, but should work fine as well, so please 
> report any issues in JIRA, thanks!
>
>
>
> Cheers,
> Tor Arne
>
>
>
> On 7 May 2021, at 11:00, coroberti  wrote:
>
>
>
> Dear Tukka and others,
> Since September Big Sur is a reality.
>
> Which Qt-version supports correctly QWidgets for this platform for
> open-source development.
>
> If there's no such version, when the support is planned if ever.
>
> I'd appreciate not to hijack this question for any discussions beyond the
> very narrow scope of this question.
>
> Thanks,
>
> Kind regards,
> Robert
> ___
> Development mailing list
> developm...@qt-project.org
> https://lists.qt-project.org/listinfo/development
>
>
>
> ___
> Interest mailing list
> Interest@qt-project.org
> https://lists.qt-project.org/listinfo/interest
>
>
>
> ___
> Interest mailing list
> Interest@qt-project.org
> https://lists.qt-project.org/listinfo/interest
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread coroberti
Dear Tor Arne,
Thank you for your reply.
It's less useful since Qt-6 is a phantom, beta, and it will remain so
for a year or more.

Kind regards,
Robert Iakobashvili


On Fri, May 7, 2021 at 12:47 PM Tor Arne Vestbø  wrote:
>
> Qt 6.0 and above has official support for Big Sur:
>
> https://doc.qt.io/archives/qt-6.0/macos.html
>
> 5.15 is not yet officially supported, but should work fine as well, so please 
> report any issues in JIRA, thanks!
>
> Cheers,
> Tor Arne
>
> On 7 May 2021, at 11:00, coroberti  wrote:
>
> Dear Tukka and others,
> Since September Big Sur is a reality.
>
> Which Qt-version supports correctly QWidgets for this platform for
> open-source development.
>
> If there's no such version, when the support is planned if ever.
>
> I'd appreciate not to hijack this question for any discussions beyond the
> very narrow scope of this question.
>
> Thanks,
>
> Kind regards,
> Robert
> ___
> Development mailing list
> developm...@qt-project.org
> https://lists.qt-project.org/listinfo/development
>
>
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread coroberti
Dear Eike,
Thanks for your comprehensive answer.

I will try to build it from open-source 5.15 branch

Where is the link to the branch?
Thanks!

Kind regards,
Robert Iakobashvili


On Fri, May 7, 2021 at 1:12 PM Eike Ziller  wrote:
>
>
>
> > On May 7, 2021, at 11:47, Tor Arne Vestbø  wrote:
> >
> > Qt 6.0 and above has official support for Big Sur:
> >
> > https://doc.qt.io/archives/qt-6.0/macos.html
> >
> > 5.15 is not yet officially supported, but should work fine as well, so 
> > please report any issues in JIRA, thanks!
> >
>
> Except for
> [QTBUG-88495] Text rendering: spaces are rendered incorrectly on macOS Big 
> Sur after commas, dots. - Qt Bug Tracker
> https://bugreports.qt.io/browse/QTBUG-88495
> and
> [QTBUG-88985] Context QMenu without parent blocked by modal dialog on macOS - 
> Qt Bug Tracker
> https://bugreports.qt.io/browse/QTBUG-88985
>
> for which the fixes are available in the opensource 5.15 branch, but not in 
> the 5.15.2 release.
>
> Qt Creator binaries are released based on Qt 5.15.2, so you can check that 
> for reference.
>
> Br, Eike
>
> > Cheers,
> > Tor Arne
> >
> >> On 7 May 2021, at 11:00, coroberti  wrote:
> >>
> >> Dear Tukka and others,
> >> Since September Big Sur is a reality.
> >>
> >> Which Qt-version supports correctly QWidgets for this platform for
> >> open-source development.
> >>
> >> If there's no such version, when the support is planned if ever.
> >>
> >> I'd appreciate not to hijack this question for any discussions beyond the
> >> very narrow scope of this question.
> >>
> >> Thanks,
> >>
> >> Kind regards,
> >> Robert
> >> ___
> >> Development mailing list
> >> developm...@qt-project.org
> >> https://lists.qt-project.org/listinfo/development
> >
> > ___
> > Development mailing list
> > developm...@qt-project.org
> > https://lists.qt-project.org/listinfo/development
>
> --
> Eike Ziller
> Principal Software Engineer
>
> The Qt Company GmbH
> Erich-Thilo-Straße 10
> D-12489 Berlin
> eike.zil...@qt.io
> http://qt.io
> Geschäftsführer: Mika Pälsi,
> Juha Varelius, Jouni Lintunen
> Sitz der Gesellschaft: Berlin, Registergericht: Amtsgericht Charlottenburg, 
> HRB 144331 B
>
___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Tuukka Turunen
Hi,

Supporting Apple silicon is something we are actively working to have in place 
for Qt 6.2 including full CI coverage etc.

To some extent things will work also with Qt 5.15 if you build yourself, but 
there are some rough edges (and Qt 5.15 is not tested for M1).

Yours,

Tuukka

From: Interest  on behalf of Nuno Santos 

Date: Friday, 7. May 2021 at 13.10
To: Tor Arne Vestbø 
Cc: Qt development mailing list , Qt Interest 

Subject: Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For
Tor,

What about building Qt 5.15.X for M1 Macs?

Is there any kind of wiki resource out there?

Regards,

Nuno


On 7 May 2021, at 10:47, Tor Arne Vestbø 
mailto:tor.arne.ves...@qt.io>> wrote:

Qt 6.0 and above has official support for Big Sur:

https://doc.qt.io/archives/qt-6.0/macos.html

5.15 is not yet officially supported, but should work fine as well, so please 
report any issues in JIRA, thanks!

Cheers,
Tor Arne


On 7 May 2021, at 11:00, coroberti 
mailto:corobe...@gmail.com>> wrote:

Dear Tukka and others,
Since September Big Sur is a reality.

Which Qt-version supports correctly QWidgets for this platform for
open-source development.

If there's no such version, when the support is planned if ever.

I'd appreciate not to hijack this question for any discussions beyond the
very narrow scope of this question.

Thanks,

Kind regards,
Robert
___
Development mailing list
developm...@qt-project.org<mailto:developm...@qt-project.org>
https://lists.qt-project.org/listinfo/development

___
Interest mailing list
Interest@qt-project.org<mailto:Interest@qt-project.org>
https://lists.qt-project.org/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Nuno Santos
Tor,

What about building Qt 5.15.X for M1 Macs? 

Is there any kind of wiki resource out there?

Regards,

Nuno

> On 7 May 2021, at 10:47, Tor Arne Vestbø  wrote:
> 
> Qt 6.0 and above has official support for Big Sur:
> 
> https://doc.qt.io/archives/qt-6.0/macos.html 
> 
> 
> 5.15 is not yet officially supported, but should work fine as well, so please 
> report any issues in JIRA, thanks!
> 
> Cheers,
> Tor Arne
> 
>> On 7 May 2021, at 11:00, coroberti > > wrote:
>> 
>> Dear Tukka and others,
>> Since September Big Sur is a reality.
>> 
>> Which Qt-version supports correctly QWidgets for this platform for
>> open-source development.
>> 
>> If there's no such version, when the support is planned if ever.
>> 
>> I'd appreciate not to hijack this question for any discussions beyond the
>> very narrow scope of this question.
>> 
>> Thanks,
>> 
>> Kind regards,
>> Robert
>> ___
>> Development mailing list
>> developm...@qt-project.org 
>> https://lists.qt-project.org/listinfo/development
> 
> ___
> Interest mailing list
> Interest@qt-project.org
> https://lists.qt-project.org/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest


Re: [Interest] [Development] Mac Big Sur - Qt Open-Source Support For

2021-05-07 Thread Tor Arne Vestbø
Qt 6.0 and above has official support for Big Sur:

https://doc.qt.io/archives/qt-6.0/macos.html

5.15 is not yet officially supported, but should work fine as well, so please 
report any issues in JIRA, thanks!

Cheers,
Tor Arne

On 7 May 2021, at 11:00, coroberti 
mailto:corobe...@gmail.com>> wrote:

Dear Tukka and others,
Since September Big Sur is a reality.

Which Qt-version supports correctly QWidgets for this platform for
open-source development.

If there's no such version, when the support is planned if ever.

I'd appreciate not to hijack this question for any discussions beyond the
very narrow scope of this question.

Thanks,

Kind regards,
Robert
___
Development mailing list
developm...@qt-project.org
https://lists.qt-project.org/listinfo/development

___
Interest mailing list
Interest@qt-project.org
https://lists.qt-project.org/listinfo/interest