Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
BuildScript/ | 12-May-2024 | - | 2,483 | 1,911 | ||
IDLE/IDLE.app/Contents/ | 12-May-2024 | - | 159 | 99 | ||
Icons/ | 12-May-2024 | - | 4 | 2 | ||
PythonLauncher/ | 12-May-2024 | - | 1,319 | 1,132 | ||
Resources/ | 12-May-2024 | - | 93 | 91 | ||
Tools/ | 12-May-2024 | - | 347 | 208 | ||
Extras.install.py | D | 12-May-2024 | 1.6 KiB | 55 | 48 | |
Makefile.in | D | 12-May-2024 | 7.9 KiB | 257 | 224 | |
README.rst | D | 12-May-2024 | 17.3 KiB | 401 | 294 |
README.rst
1====================== 2Python on macOS README 3====================== 4 5:Authors: 6 Jack Jansen (2004-07), 7 Ronald Oussoren (2010-04), 8 Ned Deily (2012-06) 9 10This document provides a quick overview of some macOS specific features in 11the Python distribution. 12 13macOS specific arguments to configure 14===================================== 15 16* ``--enable-framework[=DIR]`` 17 18 If this argument is specified the build will create a Python.framework rather 19 than a traditional Unix install. See the section 20 _`Building and using a framework-based Python on macOS` for more 21 information on frameworks. 22 23 If the optional directory argument is specified the framework is installed 24 into that directory. This can be used to install a python framework into 25 your home directory:: 26 27 $ ./configure --enable-framework=/Users/ronald/Library/Frameworks 28 $ make && make install 29 30 This will install the framework itself in ``/Users/ronald/Library/Frameworks``, 31 the applications in a subdirectory of ``/Users/ronald/Applications`` and the 32 command-line tools in ``/Users/ronald/bin``. 33 34* ``--with-framework-name=NAME`` 35 36 Specify the name for the python framework, defaults to ``Python``. This option 37 is only valid when ``--enable-framework`` is specified. 38 39* ``--enable-universalsdk[=PATH]`` 40 41 Create a universal binary build of Python. This can be used with both 42 regular and framework builds. 43 44 The optional argument specifies which macOS SDK should be used to perform the 45 build. In most cases on current systems, you do not need to specify PATH or 46 you can just use ``/``; the default MacOSX SDK for the active Xcode or Command 47 Line Tools developer directory will be used. See the macOS ``xcrun`` man page 48 for more information. Current versions of macOS and Xcode no longer install 49 system header files in their traditional locations, like ``/usr/include`` and 50 ``/System/Library/Frameworks``; instead they are found within a MacOSX SDK. 51 The Apple-supplied build tools handle this transparently and current 52 versions of Python now handle this as well. So it is no longer necessary, 53 and since macOS 10.14, no longer possible to force the installation of system 54 headers with ``xcode-select``. 55 56* ``--with-universal-archs=VALUE`` 57 58 Specify the kind of universal binary that should be created. This option is 59 only valid when ``--enable-universalsdk`` is specified. The default is 60 ``32-bit`` if building with a SDK that supports PPC, otherwise defaults 61 to ``intel``. Note that ``intel`` means a universal build of both 32-bit 62 and 64-bit binaries and that may not be what you want; for example, 63 as of macOS 10.15 Catalina, 32-bit execution is no longer supported by 64 the operating system. Thus it is best to either explicitly specify 65 values for ``--with-universal-archs``: 66 67 ``--enable-universalsdk --with-universal-archs=intel-64`` 68 69 or avoid using either. 70 71 72Building and using a universal binary of Python on macOS 73======================================================== 74 751. What is a universal binary 76----------------------------- 77 78A universal binary build of Python contains object code for more than one 79CPU architecture. A universal macOS executable file or library combines the 80architecture-specific code into one file and can therefore run at native 81speed on all supported architectures. Universal files were introduced in 82macOS 10.4 to add support for Intel-based Macs to the existing PowerPC (PPC) 83machines. In macOS 10.5 support was extended to 64-bit Intel and 64-bit PPC 84architectures. It is possible to build Python with various combinations 85of architectures depending on the build tools and macOS version in use. 86Note that PPC support was removed in macOS 10.7 and 32-bit Intel support 87was removed in macOS 10.15. So currently as of macOS 10.15, macOS only 88supports one execution architecture, 64-bit Intel (``x86_64``). 89 902. How do I build a universal binary 91------------------------------------ 92 93You can enable universal binaries by specifying the "--enable-universalsdk" 94flag to configure:: 95 96 $ ./configure --enable-universalsdk 97 $ make 98 $ make install 99 100This flag can be used with a framework build of python, but also with a classic 101unix build. Universal builds were first supported with macOS 10.4 with Xcode 2.1 102and the 10.4u SDK. Starting with Xcode 3 and macOS 10.5, more configurations are 103available. 104 105In general, universal builds depend on specific features provided by the 106Apple-supplied compilers and other build tools included in Apple's Xcode 107development tools. You should install Xcode or the command line tools 108component appropriate for the macOS release you are running on. See the 109Python Developer's Guide (https://devguide.python.org/setup/) 110for more information. 111 1122.1 Flavors of universal binaries 113................................. 114 115It is possible to build a number of flavors of the universal binary build, 116the default is a 32-bit only binary (i386 and ppc) in build environments that 117support ppc (10.4 with Xcode 2, 10.5 and 10.6 with Xcode 3) or an 118Intel-32/-64-bit binary (i386 and X86_64) in build environments that do not 119support ppc (Xcode 4 on 10.6 and later systems). The flavor can be specified 120using the configure option ``--with-universal-archs=VALUE``. The following 121values are available: 122 123 * ``universal2``: ``arm64``, ``x86_64`` 124 125 * ``intel``: ``i386``, ``x86_64`` 126 127 * ``intel-32``: ``i386`` 128 129 * ``intel-64``: ``x86_64`` 130 131 * ``32-bit``: ``ppc``, ``i386`` 132 133 * ``3-way``: ``i386``, ``x86_64``, ``ppc`` 134 135 * ``64-bit``: ``ppc64``, ``x86_64`` 136 137 * ``all``: ``ppc``, ``ppc64``, ``i386``, ``x86_64`` 138 139To build a universal binary that includes a 64-bit architecture, you must build 140on a system running macOS 10.5 or later. The ``all`` and ``64-bit`` flavors can 141only be built with a 10.5 SDK because ``ppc64`` support was only included with 142macOS 10.5. Although legacy ``ppc`` support was included with Xcode 3 on macOS 14310.6, it was removed in Xcode 4, versions of which were released on macOS 10.6 144and which is the standard for macOS 10.7. To summarize, the 145following combinations of SDKs and universal-archs flavors are available: 146 147 * 10.4u SDK with Xcode 2 supports ``32-bit`` only 148 149 * 10.5 SDK with Xcode 3.1.x supports all flavors 150 151 * 10.6 SDK with Xcode 3.2.x supports ``intel``, ``intel-32``, 152 ``intel-64``, ``3-way``, and ``32-bit`` 153 154 * 10.6 SDK with Xcode 4 supports ``intel``, ``intel-32``, and ``intel-64`` 155 156 * 10.7 through 10.14 SDKs support ``intel``, ``intel-32``, and ``intel-64`` 157 158 * 10.15 and later SDKs support ``intel-64`` only 159 160 * 11.0 and later SDKs support ``universal2`` 161 162The makefile for a framework build will also install ``python3.x-32`` 163binaries when the universal architecture includes at least one 32-bit 164architecture (that is, for all flavors but ``64-bit`` and ``intel-64``). 165 166Running a specific architecture 167............................... 168 169You can run code using a specific architecture using the ``arch`` command:: 170 171 $ arch -i386 python 172 173Or to explicitly run in 32-bit mode, regardless of the machine hardware:: 174 175 $ arch -i386 -ppc python 176 177Using ``arch`` is not a perfect solution as the selected architecture will 178not automatically carry through to subprocesses launched by programs and tests 179under that Python. If you want to ensure that Python interpreters launched in 180subprocesses also run in 32-bit-mode if the main interpreter does, use 181a ``python3.x-32`` binary and use the value of ``sys.executable`` as the 182``subprocess`` ``Popen`` executable value. 183 184Building and using a framework-based Python on macOS 185==================================================== 186 187 1881. Why would I want a framework Python instead of a normal static Python? 189-------------------------------------------------------------------------- 190 191The main reason is because you want to create GUI programs in Python. With the 192exception of X11/XDarwin-based GUI toolkits all GUI programs need to be run 193from a macOS application bundle (".app"). 194 195While it is technically possible to create a .app without using frameworks you 196will have to do the work yourself if you really want this. 197 198A second reason for using frameworks is that they put Python-related items in 199only two places: "/Library/Framework/Python.framework" and 200"/Applications/Python <VERSION>" where ``<VERSION>`` can be e.g. "3.8", 201"2.7", etc. This simplifies matters for users installing 202Python from a binary distribution if they want to get rid of it again. Moreover, 203due to the way frameworks work, usera without admin privileges can install a 204binary distribution in their home directory without recompilation. 205 2062. How does a framework Python differ from a normal static Python? 207------------------------------------------------------------------ 208 209In everyday use there is no difference, except that things are stored in 210a different place. If you look in /Library/Frameworks/Python.framework 211you will see lots of relative symlinks, see the Apple documentation for 212details. If you are used to a normal unix Python file layout go down to 213Versions/Current and you will see the familiar bin and lib directories. 214 2153. Do I need extra packages? 216---------------------------- 217 218Yes, probably. If you want Tkinter support you need to get the macOS AquaTk 219distribution, this is installed by default on macOS 10.4 or later. Be 220aware, though, that the Cocoa-based AquaTk's supplied starting with macOS 22110.6 have proven to be unstable. If possible, you should consider 222installing a newer version before building on macOS 10.6 or later, such as 223the ActiveTcl 8.6. See http://www.python.org/download/mac/tcltk/. If you 224are building with an SDK, ensure that the newer Tcl and Tk frameworks are 225seen in the SDK's ``Library/Frameworks`` directory; you may need to 226manually create symlinks to their installed location, ``/Library/Frameworks``. 227If you want wxPython you need to get that. 228If you want Cocoa you need to get PyObjC. 229 2304. How do I build a framework Python? 231------------------------------------- 232 233This directory contains a Makefile that will create a couple of python-related 234applications (full-blown macOS .app applications, that is) in 235"/Applications/Python <VERSION>", and a hidden helper application Python.app 236inside the Python.framework, and unix tools including "python" into 237/usr/local/bin. In addition it has a target "installmacsubtree" that installs 238the relevant portions of the Mac subtree into the Python.framework. 239 240It is normally invoked indirectly through the main Makefile, as the last step 241in the sequence 242 243 1. ./configure --enable-framework 244 245 2. make 246 247 3. make install 248 249This sequence will put the framework in ``/Library/Framework/Python.framework``, 250the applications in ``/Applications/Python <VERSION>`` and the unix tools in 251``/usr/local/bin``. 252 253Installing in another place, for instance ``$HOME/Library/Frameworks`` if you 254have no admin privileges on your machine, is possible. This can be accomplished 255by configuring with ``--enable-framework=$HOME/Library/Frameworks``. 256The other two directories will then also be installed in your home directory, 257at ``$HOME/Applications/Python-<VERSION>`` and ``$HOME/bin``. 258 259If you want to install some part, but not all, read the main Makefile. The 260frameworkinstall is composed of a couple of sub-targets that install the 261framework itself, the Mac subtree, the applications and the unix tools. 262 263There is an extra target frameworkinstallextras that is not part of the 264normal frameworkinstall which installs the Tools directory into 265"/Applications/Python <VERSION>", this is useful for binary 266distributions. 267 268What do all these programs do? 269=============================== 270 271"IDLE.app" is an integrated development environment for Python: editor, 272debugger, etc. 273 274"Python Launcher.app" is a helper application that will handle things when you 275double-click a .py, .pyc or .pyw file. For the first two it creates a Terminal 276window and runs the scripts with the normal command-line Python. For the 277latter it runs the script in the Python.app interpreter so the script can do 278GUI-things. Keep the ``Option`` key depressed while dragging or double-clicking 279a script to set runtime options. These options can be set persistently 280through Python Launcher's preferences dialog. 281 282The program ``pythonx.x`` runs python scripts from the command line. 283Previously, various compatibility aliases were also installed, including 284``pythonwx.x`` which in early releases of Python on macOS was required to run 285GUI programs. As of 3.4.0, the ``pythonwx.x`` aliases are no longer installed. 286 287How do I create a binary distribution? 288====================================== 289 290Download and unpack the source release from http://www.python.org/download/. 291Go to the directory ``Mac/BuildScript``. There you will find a script 292``build-installer.py`` that does all the work. This will download and build 293a number of 3rd-party libaries, configures and builds a framework Python, 294installs it, creates the installer package files and then packs this in a 295DMG image. The script also builds an HTML copy of the current Python 296documentation set for this release for inclusion in the framework. The 297installer package will create links to the documentation for use by IDLE, 298pydoc, shell users, and Finder user. 299 300The script will build a universal binary so you'll therefore have to run this 301script on macOS 10.4 or later and with Xcode 2.1 or later installed. 302However, the Python build process itself has several build dependencies not 303available out of the box with macOS 10.4 so you may have to install 304additional software beyond what is provided with Xcode 2. 305It should be possible to use SDKs and/or older 306versions of Xcode to build installers that are compatible with older systems 307on a newer system but this may not be completely foolproof so the resulting 308executables, shared libraries, and ``.so`` bundles should be carefully 309examined and tested on all supported systems for proper dynamic linking 310dependencies. It is safest to build the distribution on a system running the 311minimum macOS version supported. 312 313All of this is normally done completely isolated in /tmp/_py, so it does not 314use your normal build directory nor does it install into /. 315 316Because of the way the script locates the files it needs you have to run it 317from within the BuildScript directory. The script accepts a number of 318command-line arguments, run it with --help for more information. 319 320Configure warnings 321================== 322 323The configure script sometimes emits warnings like the one below:: 324 325 configure: WARNING: libintl.h: present but cannot be compiled 326 configure: WARNING: libintl.h: check for missing prerequisite headers? 327 configure: WARNING: libintl.h: see the Autoconf documentation 328 configure: WARNING: libintl.h: section "Present But Cannot Be Compiled" 329 configure: WARNING: libintl.h: proceeding with the preprocessor's result 330 configure: WARNING: libintl.h: in the future, the compiler will take precedence 331 configure: WARNING: ## -------------------------------------- ## 332 configure: WARNING: ## Report this to http://bugs.python.org/ ## 333 configure: WARNING: ## -------------------------------------- ## 334 335This almost always means you are trying to build a universal binary for 336Python and have libraries in ``/usr/local`` that don't contain the required 337architectures. Temporarily move ``/usr/local`` aside to finish the build. 338 339 340Uninstalling a framework install, including the binary installer 341================================================================ 342 343Uninstalling a framework can be done by manually removing all bits that got installed. 344That's true for both installations from source and installations using the binary installer. 345macOS does not provide a central uninstaller. 346 347The main bit of a framework install is the framework itself, installed in 348``/Library/Frameworks/Python.framework``. This can contain multiple versions 349of Python, if you want to remove just one version you have to remove the 350version-specific subdirectory: ``/Library/Frameworks/Python.framework/Versions/X.Y``. 351If you do that, ensure that ``/Library/Frameworks/Python.framework/Versions/Current`` 352is a symlink that points to an installed version of Python. 353 354A framework install also installs some applications in ``/Applications/Python X.Y``, 355 356And lastly a framework installation installs files in ``/usr/local/bin``, all of 357them symbolic links to files in ``/Library/Frameworks/Python.framework/Versions/X.Y/bin``. 358 359Weak linking support 360==================== 361 362The CPython sources support building with the latest SDK while targetting deployment 363to macOS 10.9. This is done through weak linking of symbols introduced in macOS 36410.10 or later and checking for their availability at runtime. 365 366This requires the use of Apple's compiler toolchain on macOS 10.13 or later. 367 368The basic implementation pattern is: 369 370* ``HAVE_<FUNCTION>`` is a macro defined (or not) by the configure script 371 372* ``HAVE_<FUNCTION>_RUNTIME`` is a macro defined in the relevant source 373 files. This expands to a call to ``__builtin_available`` when using 374 a new enough Apple compiler, and to a true value otherwise. 375 376* Use ``HAVE_<FUNCTION>_RUNTIME`` before calling ``<function>``. This macro 377 *must* be used a the sole expression in an if statement:: 378 379 if (HAVE_<FUNCTION>_RUNTIME) { 380 /* <function> is available */ 381 } 382 383 Or: 384 385 if (HAVE_<FUNCTION>_RUNTIME) {} else { 386 /* <function> is not available */ 387 } 388 389 Using other patterns (such as ``!HAVE_<FUNCTION>_RUNTIME``) is not supported 390 by Apple's compilers. 391 392 393Resources 394========= 395 396 * http://www.python.org/download/mac/ 397 398 * http://www.python.org/community/sigs/current/pythonmac-sig/ 399 400 * https://devguide.python.org/ 401