Skip to content

Commit d45eaf9

Browse files
committed
[Docs] Modernize references to macOS
Summary: This updates all places in documentation that refer to "Mac OS X", "OS X", etc. to instead use the modern name "macOS" when no specific version number is mentioned. If a specific version is mentioned, this attempts to use the OS name at the time of that version: * Mac OS X for 10.0 - 10.7 * OS X for 10.8 - 10.11 * macOS for 10.12 - present Reviewers: JDevlieghere Subscribers: mgorny, christof, arphaman, cfe-commits, lldb-commits, libcxx-commits, llvm-commits Tags: #clang, #lldb, #libc, #llvm Differential Revision: https://reviews.llvm.org/D62654 llvm-svn: 362113
1 parent 2e18076 commit d45eaf9

27 files changed

+53
-49
lines changed

clang/docs/AddressSanitizer.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ force disabled by setting ``ASAN_OPTIONS=symbolize=0``):
119119
#1 0x7f7ddabcac4d in __libc_start_main ??:0
120120
...
121121
122-
Note that on OS X you may need to run ``dsymutil`` on your binary to have the
122+
Note that on macOS you may need to run ``dsymutil`` on your binary to have the
123123
file\:line info in the AddressSanitizer reports.
124124

125125
Additional Checks
@@ -134,14 +134,14 @@ globals defined in another translation unit. To enable this check at runtime,
134134
you should set environment variable
135135
``ASAN_OPTIONS=check_initialization_order=1``.
136136

137-
Note that this option is not supported on OS X.
137+
Note that this option is not supported on macOS.
138138

139139
Memory leak detection
140140
---------------------
141141

142142
For more information on leak detector in AddressSanitizer, see
143143
:doc:`LeakSanitizer`. The leak detection is turned on by default on Linux,
144-
and can be enabled using ``ASAN_OPTIONS=detect_leaks=1`` on OS X;
144+
and can be enabled using ``ASAN_OPTIONS=detect_leaks=1`` on macOS;
145145
however, it is not yet supported on other platforms.
146146

147147
Issue Suppression
@@ -273,7 +273,7 @@ Supported Platforms
273273
AddressSanitizer is supported on:
274274

275275
* Linux i386/x86\_64 (tested on Ubuntu 12.04)
276-
* OS X 10.7 - 10.11 (i386/x86\_64)
276+
* macOS 10.7 - 10.11 (i386/x86\_64)
277277
* iOS Simulator
278278
* Android ARM
279279
* NetBSD i386/x86\_64

clang/docs/AutomaticReferenceCounting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ ARC's semantics and restrictions.
268268
* There must be reliable conventions for whether and when "ownership" is
269269
passed between caller and callee, for both arguments and return values.
270270
Objective-C methods follow such a convention very reliably, at least for
271-
system libraries on Mac OS X, and functions always pass objects at +0. The
271+
system libraries on macOS, and functions always pass objects at +0. The
272272
C-based APIs for Core Foundation objects, on the other hand, have much more
273273
varied transfer semantics.
274274

clang/docs/ClangCommandLineReference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2218,7 +2218,7 @@ Generate branches with extended addressability, usually via indirect jumps.
22182218

22192219
.. option:: -mmacosx-version-min=<arg>, -mmacos-version-min=<arg>
22202220

2221-
Set Mac OS X deployment target
2221+
Set macOS deployment target
22222222

22232223
.. option:: -mmcu=<arg>
22242224

clang/docs/CommandGuide/clang.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ number of cross compilers, or may only support a native target.
316316

317317
.. option:: -mmacosx-version-min=<version>
318318

319-
When building for Mac OS X, specify the minimum version supported by your
319+
When building for macOS, specify the minimum version supported by your
320320
application.
321321

322322
.. option:: -miphoneos-version-min

clang/docs/LeakSanitizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ detection phase.
1717
Usage
1818
=====
1919

20-
LeakSanitizer is supported on x86\_64 Linux and OS X. In order to use it,
20+
LeakSanitizer is supported on x86\_64 Linux and macOS. In order to use it,
2121
simply build your program with :doc:`AddressSanitizer`:
2222

2323
.. code-block:: console

clang/docs/Modules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ The *module-id* should consist of only a single *identifier*, which provides the
360360

361361
The ``explicit`` qualifier can only be applied to a submodule, i.e., a module that is nested within another module. The contents of explicit submodules are only made available when the submodule itself was explicitly named in an import declaration or was re-exported from an imported module.
362362

363-
The ``framework`` qualifier specifies that this module corresponds to a Darwin-style framework. A Darwin-style framework (used primarily on Mac OS X and iOS) is contained entirely in directory ``Name.framework``, where ``Name`` is the name of the framework (and, therefore, the name of the module). That directory has the following layout:
363+
The ``framework`` qualifier specifies that this module corresponds to a Darwin-style framework. A Darwin-style framework (used primarily on macOS and iOS) is contained entirely in directory ``Name.framework``, where ``Name`` is the name of the framework (and, therefore, the name of the module). That directory has the following layout:
364364

365365
.. parsed-literal::
366366

clang/docs/SafeStack.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ and link command lines.
126126
Supported Platforms
127127
-------------------
128128

129-
SafeStack was tested on Linux, NetBSD, FreeBSD and MacOSX.
129+
SafeStack was tested on Linux, NetBSD, FreeBSD and macOS.
130130

131131
Low-level API
132132
-------------

clang/docs/UndefinedBehaviorSanitizer.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ UndefinedBehaviorSanitizer is supported on the following operating systems:
295295
* NetBSD
296296
* FreeBSD
297297
* OpenBSD
298-
* OS X 10.6 onwards
298+
* macOS
299299
* Windows
300300

301301
The runtime library is relatively portable and platform independent. If the OS

clang/docs/UsersManual.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ on-disk cache that contains the vital information necessary to reduce
10061006
some of the work needed to process a corresponding header file. While
10071007
details of precompiled headers vary between compilers, precompiled
10081008
headers have been shown to be highly effective at speeding up program
1009-
compilation on systems with very large system headers (e.g., Mac OS X).
1009+
compilation on systems with very large system headers (e.g., macOS).
10101010

10111011
Generating a PCH File
10121012
^^^^^^^^^^^^^^^^^^^^^
@@ -2746,7 +2746,7 @@ X86
27462746
^^^
27472747

27482748
The support for X86 (both 32-bit and 64-bit) is considered stable on
2749-
Darwin (Mac OS X), Linux, FreeBSD, and Dragonfly BSD: it has been tested
2749+
Darwin (macOS), Linux, FreeBSD, and Dragonfly BSD: it has been tested
27502750
to correctly compile many large C, C++, Objective-C, and Objective-C++
27512751
codebases.
27522752

@@ -2801,8 +2801,8 @@ backend.
28012801
Operating System Features and Limitations
28022802
-----------------------------------------
28032803

2804-
Darwin (Mac OS X)
2805-
^^^^^^^^^^^^^^^^^
2804+
Darwin (macOS)
2805+
^^^^^^^^^^^^^^
28062806

28072807
Thread Sanitizer is not supported.
28082808

clang/docs/analyzer/checkers.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -778,7 +778,7 @@ Check for null pointers being passed as arguments to C string functions:
778778
779779
osx
780780
^^^
781-
OS X checkers.
781+
macOS checkers.
782782
783783
osx.API (C)
784784
"""""""""""

clang/docs/analyzer/developer-docs/DebugChecks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ General Analysis Dumpers
1515

1616
These checkers are used to dump the results of various infrastructural analyses
1717
to stderr. Some checkers also have "view" variants, which will display a graph
18-
using a 'dot' format viewer (such as Graphviz on OS X) instead.
18+
using a 'dot' format viewer (such as Graphviz on macOS) instead.
1919

2020
- debug.DumpCallGraph, debug.ViewCallGraph: Show the call graph generated for
2121
the current translation unit. This is used to determine the order in which to

libcxx/docs/BuildingLibcxx.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ The basic steps needed to build libc++ are:
4141

4242
.. warning::
4343
* Replacing your systems libc++ installation could render the system non-functional.
44-
* Mac OS X will not boot without a valid copy of ``libc++.1.dylib`` in ``/usr/lib``.
44+
* macOS will not boot without a valid copy of ``libc++.1.dylib`` in ``/usr/lib``.
4545

4646

4747
The instructions are for building libc++ on

libcxx/docs/UsingLibcxx.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you already have libc++ installed you can use it with clang.
1515
$ clang++ -stdlib=libc++ test.cpp
1616
$ clang++ -std=c++11 -stdlib=libc++ test.cpp
1717
18-
On OS X and FreeBSD libc++ is the default standard library
18+
On macOS and FreeBSD libc++ is the default standard library
1919
and the ``-stdlib=libc++`` is not required.
2020

2121
.. _alternate libcxx:
@@ -34,7 +34,7 @@ can use the following options.
3434
The option ``-Wl,-rpath,<libcxx-install-prefix>/lib`` adds a runtime library
3535
search path. Meaning that the systems dynamic linker will look for libc++ in
3636
``<libcxx-install-prefix>/lib`` whenever the program is run. Alternatively the
37-
environment variable ``LD_LIBRARY_PATH`` (``DYLD_LIBRARY_PATH`` on OS X) can
37+
environment variable ``LD_LIBRARY_PATH`` (``DYLD_LIBRARY_PATH`` on macOS) can
3838
be used to change the dynamic linkers search paths after a program is compiled.
3939

4040
An example of using ``LD_LIBRARY_PATH``:

libcxx/docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ and GCC.
9393
============ ==================== ============ ========================
9494
OS Arch Compilers ABI Library
9595
============ ==================== ============ ========================
96-
Mac OS X i386, x86_64 Clang, GCC libc++abi
96+
macOS i386, x86_64 Clang, GCC libc++abi
9797
FreeBSD 10+ i386, x86_64, ARM Clang, GCC libcxxrt, libc++abi
9898
Linux i386, x86_64 Clang, GCC libc++abi
9999
============ ==================== ============ ========================

libunwind/docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ FreeBSD i386, x86_64, ARM64 Clang DWARF CFI
5050
iOS ARM Clang SjLj
5151
Linux ARM Clang, GCC EHABI
5252
Linux i386, x86_64, ARM64 Clang, GCC DWARF CFI
53-
Mac OS X i386, x86_64 Clang, GCC DWARF CFI
53+
macOS i386, x86_64 Clang, GCC DWARF CFI
5454
NetBSD x86_64 Clang, GCC DWARF CFI
5555
Windows i386, x86_64, ARM, ARM64 Clang DWARF CFI
5656
============ ======================== ============ ========================

lld/docs/sphinx_intro.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ to install it using:
4343
Use your distribution's standard package management tool to install it,
4444
i.e., ``apt-get install easy_install`` or ``yum install easy_install``.
4545

46-
Mac OS X
47-
All modern Mac OS X systems come with ``easy_install`` as part of the base
46+
macOS
47+
All modern macOS systems come with ``easy_install`` as part of the base
4848
system.
4949

5050
Windows

lldb/docs/lldb-gdb-remote.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -787,9 +787,9 @@ os_version: a version string that represents the current OS version (10.8.2)
787787
watchpoint_exceptions_received: one of "before" or "after" to specify if a watchpoint is triggered before or after the pc when it stops
788788
default_packet_timeout: an unsigned number that specifies the default timeout in seconds
789789
distribution_id: optional. For linux, specifies distribution id (e.g. ubuntu, fedora, etc.)
790-
osmajor: optional, specifies the major version number of the OS (e.g. for Mac OS X 10.11.2, it would be 10)
791-
osminor: optional, specifies the minor version number of the OS (e.g. for Mac OS X 10.11.2, it would be 11)
792-
ospatch: optional, specifies the patch level number of the OS (e.g. for Mac OS X 10.11.2, it would be 2)
790+
osmajor: optional, specifies the major version number of the OS (e.g. for macOS 10.12.2, it would be 10)
791+
osminor: optional, specifies the minor version number of the OS (e.g. for macOS 10.12.2, it would be 12)
792+
ospatch: optional, specifies the patch level number of the OS (e.g. for macOS 10.12.2, it would be 2)
793793

794794
//----------------------------------------------------------------------
795795
// "qGDBServerVersion"
@@ -1160,7 +1160,7 @@ for this region.
11601160
// second form of this packet is used, otherwise the first form is
11611161
// used. This packet is called prior to executing an expression, so
11621162
// the remote GDB server should do anything it needs to in order to
1163-
// ensure the registers that are saved are correct. On MacOSX this
1163+
// ensure the registers that are saved are correct. On macOS this
11641164
// involves calling "thread_abort_safely(mach_port_t thread)" to
11651165
// ensure we get the correct registers for a thread in case it is
11661166
// currently having code run on its behalf in the kernel.
@@ -1723,7 +1723,7 @@ for this region.
17231723
// There are three ways this packet can be used. All three return a dictionary of
17241724
// binary images formatted the same way.
17251725
//
1726-
// On MacOS X 10.11, iOS 9, tvOS 9, watchOS 2 and earlier, the packet is used like
1726+
// On OS X 10.11, iOS 9, tvOS 9, watchOS 2 and earlier, the packet is used like
17271727
// jGetLoadedDynamicLibrariesInfos:{"image_count":1,"image_list_address":140734800075128}
17281728
// where the image_list_address is an array of {void* load_addr, void* mod_date, void* pathname}
17291729
// in the inferior process memory (and image_count is the number of elements in this array).
@@ -1863,9 +1863,9 @@ server to expedite memory that the client is likely to use (e.g., areas around t
18631863
stack pointer, which are needed for computing backtraces) and it reduces the packet
18641864
count.
18651865

1866-
On MacOSX with debugserver, we expedite the frame pointer backchain for a thread
1866+
On macOS with debugserver, we expedite the frame pointer backchain for a thread
18671867
(up to 256 entries) by reading 2 pointers worth of bytes at the frame pointer (for
1868-
the previous FP and PC), and follow the backchain. Most backtraces on MacOSX and
1868+
the previous FP and PC), and follow the backchain. Most backtraces on macOS and
18691869
iOS now don't require us to read any memory!
18701870

18711871
//----------------------------------------------------------------------

lldb/docs/resources/build.rst

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,8 +117,12 @@ There are two ways to build LLDB on macOS: Using Xcode and using CMake
117117

118118
**Preliminaries**
119119

120-
* Xcode 4.3 or newer requires the "Command Line Tools" component (XCode->Preferences->Downloads->Components).
121-
* Mac OS X Lion or newer requires installing `Swig <http://swig.org/>`_.
120+
In addition to any dependencies required by LLVM and Clang, LLDB needs a few
121+
development packages that may also need to be installed depending on your
122+
system. The current list of dependencies are:
123+
124+
* Xcode 4.3 or newer requires the "Command Line Tools" component (XCode->Preferences->Downloads->Components)
125+
* `Swig <http://swig.org/>`_
122126

123127
**Building LLDB with Xcode**
124128

lldb/docs/use/remote.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ advanced debugging operations, like copying files from/to the remote system and
1717
can be used to execute arbitrary shell commands on the remote system.
1818

1919
In order to reduce code complexity and improve remote debugging experience LLDB
20-
on Linux and OSX uses the remote debugging stub even when debugging a process
20+
on Linux and macOS uses the remote debugging stub even when debugging a process
2121
locally. This is achieved by spawning a remote stub process locally and
2222
communicating with it over the loopback interface. In the case of local
2323
debugging this whole process is transparent to the user. The platform binary is
@@ -44,7 +44,7 @@ gdb-remote stub. A single binary facilitates deployment and reduces code size,
4444
since the two functions share a lot of code. The lldb-server binary is also
4545
statically linked with the rest of LLDB (unlike lldb, which dynamically links
4646
to liblldb.so by default), so it does not have any dependencies on the rest of
47-
lldb. On Mac OSX and iOS, the remote-gdb functionality is implemented by the
47+
lldb. On macOS and iOS, the remote-gdb functionality is implemented by the
4848
debugserver binary, which you will need to deploy alongside lldb-server.
4949

5050
The binaries mentioned above need to be present on the remote system to enable

llvm/docs/CMake.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -533,7 +533,7 @@ LLVM-specific variables
533533
`share/doc/llvm/ocaml-html`.
534534

535535
**LLVM_CREATE_XCODE_TOOLCHAIN**:BOOL
536-
OS X Only: If enabled CMake will generate a target named
536+
macOS Only: If enabled CMake will generate a target named
537537
'install-xcode-toolchain'. This target will create a directory at
538538
$CMAKE_INSTALL_PREFIX/Toolchains containing an xctoolchain directory which can
539539
be used to override the default system tools.

llvm/docs/CommandGuide/llvm-ar.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ STANDARDS
229229

230230
The **llvm-ar** utility is intended to provide a superset of the IEEE Std 1003.2
231231
(POSIX.2) functionality for ``ar``. **llvm-ar** can read both SVR4 and BSD4.4 (or
232-
Mac OS X) archives. If the ``f`` modifier is given to the ``x`` or ``r`` operations
232+
macOS) archives. If the ``f`` modifier is given to the ``x`` or ``r`` operations
233233
then **llvm-ar** will write SVR4 compatible archives. Without this modifier,
234234
**llvm-ar** will write BSD4.4 compatible archives that have long names
235235
immediately after the header and indicated using the "#1/ddd" notation for the
@@ -240,7 +240,7 @@ FILE FORMAT
240240
-----------
241241

242242

243-
The file format for LLVM Archive files is similar to that of BSD 4.4 or Mac OSX
243+
The file format for LLVM Archive files is similar to that of BSD 4.4 or macOS
244244
archive files. In fact, except for the symbol table, the ``ar`` commands on those
245245
operating systems should be able to read LLVM archive files. The details of the
246246
file format follow.

llvm/docs/CompilerWriterInfo.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,8 @@ Linux
140140
* `ELF for the ARM 64-bit Architecture (AArch64) <http://infocenter.arm.com/help/topic/com.arm.doc.ihi0056a/IHI0056A_aaelf64.pdf>`_
141141
* `System z ELF ABI Supplement <http://legacy.redhat.com/pub/redhat/linux/7.1/es/os/s390x/doc/lzsabi0.pdf>`_
142142

143-
OS X
144-
----
143+
macOS
144+
-----
145145

146146
* `Mach-O Runtime Architecture <http://developer.apple.com/documentation/Darwin/RuntimeArchitecture-date.html>`_
147147
* `Notes on Mach-O ABI <http://www.unsanity.org/archives/000044.php>`_

llvm/docs/DebuggingJITedCode.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ GDB Version
2929
In order to debug code JIT-ed by LLVM, you need GDB 7.0 or newer, which is
3030
available on most modern distributions of Linux. The version of GDB that
3131
Apple ships with Xcode has been frozen at 6.3 for a while. LLDB may be a
32-
better option for debugging JIT-ed code on Mac OS X.
32+
better option for debugging JIT-ed code on macOS.
3333

3434

3535
Debugging MCJIT-ed code

llvm/docs/GettingStarted.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ FreeBSD x86\ :sup:`1` GCC, Clang
128128
FreeBSD amd64 GCC, Clang
129129
NetBSD x86\ :sup:`1` GCC, Clang
130130
NetBSD amd64 GCC, Clang
131-
MacOS X\ :sup:`2` PowerPC GCC
132-
MacOS X x86 GCC, Clang
131+
macOS\ :sup:`2` PowerPC GCC
132+
macOS x86 GCC, Clang
133133
Cygwin/Win32 x86\ :sup:`1, 3` GCC
134134
Windows x86\ :sup:`1` Visual Studio
135135
Windows x64 x86-64 Visual Studio
@@ -272,7 +272,7 @@ newer version of Gold.
272272
Getting a Modern Host C++ Toolchain
273273
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
274274

275-
This section mostly applies to Linux and older BSDs. On Mac OS X, you should
275+
This section mostly applies to Linux and older BSDs. On macOS, you should
276276
have a sufficiently modern Xcode, or you will likely need to upgrade until you
277277
do. Windows does not have a "system compiler", so you must install either Visual
278278
Studio 2015 or a recent version of mingw64. FreeBSD 10.0 and newer have a modern
@@ -711,7 +711,7 @@ define compiler flags and variables used during the CMake test operations.
711711

712712
The result of such a build is executables that are not runnable on the build
713713
host but can be executed on the target. As an example the following CMake
714-
invocation can generate build files targeting iOS. This will work on Mac OS X
714+
invocation can generate build files targeting iOS. This will work on macOS
715715
with the latest Xcode:
716716

717717
.. code-block:: console

llvm/docs/ProgrammersManual.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1372,8 +1372,8 @@ these functions in your code in places you want to debug.
13721372

13731373
Getting this to work requires a small amount of setup. On Unix systems
13741374
with X11, install the `graphviz <http://www.graphviz.org>`_ toolkit, and make
1375-
sure 'dot' and 'gv' are in your path. If you are running on Mac OS X, download
1376-
and install the Mac OS X `Graphviz program
1375+
sure 'dot' and 'gv' are in your path. If you are running on macOS, download
1376+
and install the macOS `Graphviz program
13771377
<http://www.pixelglow.com/graphviz/>`_ and add
13781378
``/Applications/Graphviz.app/Contents/MacOS/`` (or wherever you install it) to
13791379
your path. The programs need not be present when configuring, building or

llvm/docs/TestingGuide.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ RUN lines:
511511
The suffix for the host platforms shared library files. This includes the
512512
period as the first character.
513513

514-
Example: ``.so`` (Linux), ``.dylib`` (OS X), ``.dll`` (Windows)
514+
Example: ``.so`` (Linux), ``.dylib`` (macOS), ``.dll`` (Windows)
515515

516516
``%exeext``
517517
The suffix for the host platforms executable files. This includes the

llvm/docs/WritingAnLLVMPass.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ This build script specifies that ``Hello.cpp`` file in the current directory
7777
is to be compiled and linked into a shared object ``$(LEVEL)/lib/LLVMHello.so`` that
7878
can be dynamically loaded by the :program:`opt` tool via its :option:`-load`
7979
option. If your operating system uses a suffix other than ``.so`` (such as
80-
Windows or Mac OS X), the appropriate extension will be used.
80+
Windows or macOS), the appropriate extension will be used.
8181

8282
Now that we have the build scripts set up, we just need to write the code for
8383
the pass itself.

0 commit comments

Comments
 (0)