/usr/share/qt5/doc/qtdoc/osx-building.html is in qt5-doc-html 5.5.1-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- osx.qdoc -->
<title>Qt for OS X - Building from Source | Qt 5.5 </title>
<link rel="stylesheet" type="text/css" href="style/offline.css" />
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<ul>
<li><a href="index.html">Qt 5.5</a></li>
<li>Qt for OS X - Building from Source</li>
<li id="buildversion">Qt 5.5.1 Reference Documentation</li>
</ul>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#step-1-install-the-license-file-commercial-editions-only">Step 1: Install the License File (Commercial Editions Only)</a></li>
<li class="level1"><a href="#step-2-build-the-qt-library">Step 2: Build the Qt Library</a></li>
<li class="level1"><a href="#step-3-set-the-environment-variables">Step 3: Set the Environment Variables</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">Qt for OS X - Building from Source</h1>
<span class="subtitle"></span>
<!-- $$$osx-building.html-description -->
<div class="descr"> <a name="details"></a>
<p>Qt for OS X has some requirements that are given in more detail in the <a href="osx-requirements.html">Qt for OS X Requirements</a> document.</p>
<p>The following instructions describe how to install Qt from the source package. You can download the Qt 5 sources from the <a href="http://qt.io/download">Downloads</a> page. For more information, visit the <a href="gettingstarted.html">Getting Started with Qt</a> page.</p>
<p>For the binary package, simply double-click on the Qt.mpkg and follow the instructions to install Qt. You can later run the <code>uninstall-qt.py</code> script to uninstall the binary package. The script is located in /Developer/Tools and must be run as root.</p>
<p><b>Note: </b>Do not run the iPhone simulator while installing Qt. The <a href="http://openradar.appspot.com/7214991">iPhone simulator conflicts with the package installer</a>.</p><a name="step-1-install-the-license-file-commercial-editions-only"></a>
<h2 id="step-1-install-the-license-file-commercial-editions-only">Step 1: Install the License File (Commercial Editions Only)</h2>
<p>If you have the commercial edition of Qt, install your license file as <code>$HOME/.qt-license</code>.</p>
<p>For the open source version you do not need a license file.</p>
<p>Unpack the archive if you have not done so already. For example, if you have the <code>qt-everywhere-opensource-src-5.5.1.tar.gz</code> package, type the following commands at a command line prompt:</p>
<pre class="cpp">cd <span class="operator">/</span>tmp
gunzip qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.5.1.tar.gz</span> <span class="preprocessor"># uncompress the archive</span>
tar xvf qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.5.1.tar</span> <span class="preprocessor"># unpack it</span></pre>
<p>This creates the directory <code>/tmp/qt-everywhere-opensource-src-5.5.1</code> containing the files from the archive.</p>
<a name="step-2-build-the-qt-library"></a>
<h2 id="step-2-build-the-qt-library">Step 2: Build the Qt Library</h2>
<p>To configure the Qt library for your machine type, run the <code>./configure</code> script in the package directory.</p>
<p>By default, Qt is configured for installation in the <code>/usr/local/Qt-5.5.1</code> directory, but this can be changed by using the <code>-prefix</code> option.</p>
<pre class="cpp">cd <span class="operator">/</span>tmp<span class="operator">/</span>qt<span class="operator">-</span>everywhere<span class="operator">-</span>opensource<span class="operator">-</span>src<span class="operator">-</span><span class="number">5.5.1</span>
<span class="operator">.</span><span class="operator">/</span>configure</pre>
<p>Specify <code>-universal</code> if you want to build universal binaries, and also supply a path to the <code>-sdk</code> option if your development machine has a PowerPC CPU. By default, Qt is built as a framework, but you can built it as a set of dynamic libraries (dylibs) by specifying the <code>-no- framework</code> option.</p>
<p>Qt can also be configured to be built with debugging symbols. This process is described in detail in the <a href="debug.html">Debugging Techniques</a> document.</p>
<p>The <a href="configure-options.html">Configure Options</a> page contains more information about the configure options.</p>
<p>To create the library and compile all the examples, tools, and tutorials, type:</p>
<pre class="cpp">make</pre>
<p>If <code>-prefix</code> is outside the build directory, you need to install the library, examples, tools, and tutorials in the appropriate place. To do this, type:</p>
<pre class="cpp">sudo make <span class="operator">-</span>j1 install</pre>
<p>This command requires that you have administrator access on your machine.</p>
<p><b>Note: </b>There is a potential race condition when running make install with multiple jobs. It is best to only run one make job (-j1) for the install.</p><p>If you later need to reconfigure and rebuild Qt from the same location, ensure that all traces of the previous configuration are removed by entering the build directory and typing <code>make confclean</code> before running <code>configure</code> again.</p>
<a name="step-3-set-the-environment-variables"></a>
<h2 id="step-3-set-the-environment-variables">Step 3: Set the Environment Variables</h2>
<p>In order to use Qt, some environment variables need to be extended.</p>
<pre class="cpp">PATH <span class="operator">-</span> to locate qmake<span class="operator">,</span> moc and other <span class="type"><a href="../qtcore/qt.html">Qt</a></span> tools</pre>
<p>This is done like this:</p>
<p>In <code>.profile</code> (if your shell is bash), add the following lines:</p>
<pre class="cpp">PATH<span class="operator">=</span><span class="operator">/</span>usr<span class="operator">/</span>local<span class="operator">/</span><span class="type"><a href="../qtcore/qt.html">Qt</a></span><span class="operator">-</span><span class="number">5.5.1</span><span class="operator">/</span>bin:$PATH
<span class="keyword">export</span> PATH</pre>
<p>In <code>.login</code> (in case your shell is csh or tcsh), add the following line:</p>
<pre class="cpp">setenv PATH <span class="operator">/</span>usr<span class="operator">/</span>local<span class="operator">/</span><span class="type"><a href="../qtcore/qt.html">Qt</a></span><span class="operator">-</span><span class="number">5.5.1</span><span class="operator">/</span>bin:$PATH</pre>
<p>If you use a different shell, please modify your environment variables accordingly.</p>
<p><b>That's all. Qt is now installed.</b></p>
</div>
<!-- @@@osx-building.html -->
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2015 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. </p>
</div>
</body>
</html>
|