summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@digia.com>2014-04-07 12:34:59 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-08 16:50:13 +0200
commita1b414d573dfd316d67090d91f873878a9ccb6e1 (patch)
tree4923475f5b785ef90b45ba0d39a2e9f20196274c
parentb96649454f4065c0a81e596cb740af8e6c774afa (diff)
downloadqtdoc-a1b414d573dfd316d67090d91f873878a9ccb6e1.tar.gz
OSX: grammar fixes and details in Platform support for Mac OS X
It's nice to have a place from which to copy and paste the actual command line to use debug libraries. Change-Id: I6f393f1a21b9d4c91a28bfc9f5e869fb22960fb5 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
-rw-r--r--doc/src/platforms/macosx.qdoc18
1 files changed, 12 insertions, 6 deletions
diff --git a/doc/src/platforms/macosx.qdoc b/doc/src/platforms/macosx.qdoc
index 02730ac3..4a44ea86 100644
--- a/doc/src/platforms/macosx.qdoc
+++ b/doc/src/platforms/macosx.qdoc
@@ -446,17 +446,23 @@
\section2 Qt Libraries as Frameworks
- By default, Qt is built as a set of frameworks. Frameworks is the
- Mac OS X preferred way of distributing libraries.The
+ By default, Qt is built as a set of frameworks. Frameworks are the
+ Mac OS X preferred way of distributing libraries. The
\l{http://developer.apple.com/documentation/MacOSX/Conceptual/BPFrameworks/index.html}
- {Apple's Framework Programming Guide} site has for more information about
+ {Apple's Framework Programming Guide} site has far more information about
Frameworks.
- It is important to remember that Frameworks always links with \e release
+ It is important to remember that Frameworks always link with \e release
versions of libraries. If the \e{debug} version of a Qt framework is
desired, use the \c DYLD_IMAGE_SUFFIX environment variables to ensure that
- the debug version is loaded. Alternatively, you can temporarily swap your
- debug and release versions, which is documented in
+ the debug version is loaded:
+
+ \code
+ export DYLD_IMAGE_SUFFIX=_debug
+ \endcode
+
+ Alternatively, you can temporarily swap your debug and release versions,
+ which is documented in
\l{http://developer.apple.com/technotes/tn2004/tn2124.html#SECJUSTONELIB}
{Apple's "Debugging Magic" technical note}.