diff options
Diffstat (limited to 'libcxx/docs')
-rw-r--r-- | libcxx/docs/BuildingLibcxx.rst | 2 | ||||
-rw-r--r-- | libcxx/docs/UsingLibcxx.rst | 4 | ||||
-rw-r--r-- | libcxx/docs/index.rst | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/libcxx/docs/BuildingLibcxx.rst b/libcxx/docs/BuildingLibcxx.rst index c334269a6d5..06f89608a2c 100644 --- a/libcxx/docs/BuildingLibcxx.rst +++ b/libcxx/docs/BuildingLibcxx.rst @@ -41,7 +41,7 @@ The basic steps needed to build libc++ are: .. warning:: * Replacing your systems libc++ installation could render the system non-functional. - * Mac OS X will not boot without a valid copy of ``libc++.1.dylib`` in ``/usr/lib``. + * macOS will not boot without a valid copy of ``libc++.1.dylib`` in ``/usr/lib``. The instructions are for building libc++ on diff --git a/libcxx/docs/UsingLibcxx.rst b/libcxx/docs/UsingLibcxx.rst index e2af5c6ecf3..ef3023ea8f9 100644 --- a/libcxx/docs/UsingLibcxx.rst +++ b/libcxx/docs/UsingLibcxx.rst @@ -15,7 +15,7 @@ If you already have libc++ installed you can use it with clang. $ clang++ -stdlib=libc++ test.cpp $ clang++ -std=c++11 -stdlib=libc++ test.cpp -On OS X and FreeBSD libc++ is the default standard library +On macOS and FreeBSD libc++ is the default standard library and the ``-stdlib=libc++`` is not required. .. _alternate libcxx: @@ -34,7 +34,7 @@ can use the following options. The option ``-Wl,-rpath,<libcxx-install-prefix>/lib`` adds a runtime library search path. Meaning that the systems dynamic linker will look for libc++ in ``<libcxx-install-prefix>/lib`` whenever the program is run. Alternatively the -environment variable ``LD_LIBRARY_PATH`` (``DYLD_LIBRARY_PATH`` on OS X) can +environment variable ``LD_LIBRARY_PATH`` (``DYLD_LIBRARY_PATH`` on macOS) can be used to change the dynamic linkers search paths after a program is compiled. An example of using ``LD_LIBRARY_PATH``: diff --git a/libcxx/docs/index.rst b/libcxx/docs/index.rst index 0fd35407f34..933d0fe3115 100644 --- a/libcxx/docs/index.rst +++ b/libcxx/docs/index.rst @@ -93,7 +93,7 @@ and GCC. ============ ==================== ============ ======================== OS Arch Compilers ABI Library ============ ==================== ============ ======================== -Mac OS X i386, x86_64 Clang, GCC libc++abi +macOS i386, x86_64 Clang, GCC libc++abi FreeBSD 10+ i386, x86_64, ARM Clang, GCC libcxxrt, libc++abi Linux i386, x86_64 Clang, GCC libc++abi ============ ==================== ============ ======================== |