summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorMorten Johan Sørvig <morten.sorvig@qt.io>2017-10-04 11:49:42 +0200
committerTor Arne Vestbø <tor.arne.vestbo@qt.io>2017-10-04 15:55:07 +0000
commit59cd20b07364bc1c08217a6d669cb09fa827d097 (patch)
treee79914234ac4a22b575c442fa95c304b6bd475ac /doc
parent813796be66919095c5abea126e50d2c454a75938 (diff)
downloadqtdoc-59cd20b07364bc1c08217a6d669cb09fa827d097.tar.gz
Document removal of macOS 32-bit supportv5.10.0-beta1
32-bit support has been deprecated for some time, and several breaking changes have gone into the 5.10 branch. Make the current state official: Qt 5.10 and higher will not support 32-bit mode. Qt 5.9 LTS will continue to do so. Change-Id: Iaea4f3499054093984ad70cb60b837fb506ca16e Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io> Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/platforms/osx.qdoc9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/src/platforms/osx.qdoc b/doc/src/platforms/osx.qdoc
index cc093397..0f33eb85 100644
--- a/doc/src/platforms/osx.qdoc
+++ b/doc/src/platforms/osx.qdoc
@@ -63,19 +63,20 @@
See \l{Supported Platforms} for the list of \macos versions supported by Qt.
- Qt can be built for either x86 or x86_64. 64-bit is used by default.
- To select a 32-bit build, use the \c QMAKE_APPLE_DEVICE_ARCHS \c qmake variable.
+ Qt can be built for either x86_64 or x86_64h (Haswell). x86_64 is used by default.
+ To select a x86_64h build, use the \c QMAKE_APPLE_DEVICE_ARCHS \c qmake variable.
This is selectable at configure time:
\code
- ./configure -platform macx-clang QMAKE_APPLE_DEVICE_ARCHS=i386
+ ./configure -platform macx-clang QMAKE_APPLE_DEVICE_ARCHS=x86_64h
\endcode
\c QMAKE_APPLE_DEVICE_ARCHS can also be specified as a space-delimited list
in order to build for multiple architectures simultaneously:
\code
- ./configure -platform macx-clang QMAKE_APPLE_DEVICE_ARCHS="i386 x86_64 x86_64h"
+ ./configure -platform macx-clang QMAKE_APPLE_DEVICE_ARCHS="x86_64 x86_64h"
\endcode
+ \note Qt 5.10+ does not support 32-bit builds.
\note Qt 5 does not support OS X on PowerPC.
\note Static builds are not tested.