2016-06-02 10:16:28 +08:00
|
|
|
.. _BuildingLibcxx:
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
===============
|
|
|
|
Building libc++
|
|
|
|
===============
|
|
|
|
|
|
|
|
.. contents::
|
|
|
|
:local:
|
|
|
|
|
2016-05-04 06:32:08 +08:00
|
|
|
.. _build instructions:
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
Getting Started
|
|
|
|
===============
|
|
|
|
|
|
|
|
On Mac OS 10.7 (Lion) and later, the easiest way to get this library is to install
|
|
|
|
Xcode 4.2 or later. However if you want to install tip-of-trunk from here
|
|
|
|
(getting the bleeding edge), read on.
|
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
The following instructions describe how to checkout, build, test and
|
|
|
|
(optionally) install libc++ and libc++abi.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
If your system already provides a libc++ installation it is important to be
|
|
|
|
careful not to replace it. Remember Use the CMake option
|
|
|
|
``CMAKE_INSTALL_PREFIX`` to select a safe place to install libc++.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
.. warning::
|
|
|
|
* Replacing your systems libc++ installation could render the system non-functional.
|
|
|
|
* macOS will not boot without a valid copy of ``libc++.1.dylib`` in ``/usr/lib``.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
.. code-block:: bash
|
2015-08-23 03:40:49 +08:00
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
$ git clone https://github.com/llvm/llvm-project.git
|
|
|
|
$ cd llvm-project
|
|
|
|
$ mkdir build && cd build
|
|
|
|
$ cmake -DCMAKE_C_COMPILER=clang \
|
|
|
|
-DCMAKE_CXX_COMPILER=clang++ \
|
|
|
|
-DLLVM_ENABLE_PROJECTS="libcxx;libcxxabi" \
|
|
|
|
../llvm
|
|
|
|
$ make # Build
|
|
|
|
$ make check-cxx # Test
|
|
|
|
$ make install-cxx install-cxxabi # Install
|
|
|
|
|
|
|
|
For more information about configuring libc++ see :ref:`CMake Options`. You may
|
|
|
|
also want to read the `LLVM getting started
|
|
|
|
<https://llvm.org/docs/GettingStarted.html>`_ documentation.
|
|
|
|
|
|
|
|
Shared libraries for libc++ and libc++ abi should now be present in
|
|
|
|
``build/lib``. See :ref:`using an alternate libc++ installation <alternate
|
|
|
|
libcxx>` for information on how to use this libc++.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
The instructions are for building libc++ on
|
|
|
|
FreeBSD, Linux, or Mac using `libc++abi`_ as the C++ ABI library.
|
|
|
|
On Linux, it is also possible to use :ref:`libsupc++ <libsupcxx>` or libcxxrt.
|
|
|
|
|
2019-11-08 04:40:05 +08:00
|
|
|
It is possible to keep your LLVM and libc++ trees separate so you can avoid
|
|
|
|
rebuilding LLVM as often. An out-of-tree build would look like this:
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ cd where-you-want-libcxx-to-live
|
2019-01-30 00:37:27 +08:00
|
|
|
$ # Check out the sources (includes everything, but we'll only use libcxx)
|
|
|
|
$ ``git clone https://github.com/llvm/llvm-project.git``
|
2015-08-23 03:40:49 +08:00
|
|
|
$ cd where-you-want-to-build
|
|
|
|
$ mkdir build && cd build
|
|
|
|
$ export CC=clang CXX=clang++
|
2019-01-30 00:37:27 +08:00
|
|
|
$ cmake -DLLVM_PATH=path/to/separate/llvm \
|
2015-08-23 03:40:49 +08:00
|
|
|
-DLIBCXX_CXX_ABI=libcxxabi \
|
2019-01-30 00:37:27 +08:00
|
|
|
-DLIBCXX_CXX_ABI_INCLUDE_PATHS=path/to/separate/libcxxabi/include \
|
|
|
|
path/to/llvm-project/libcxx
|
2015-08-23 03:40:49 +08:00
|
|
|
$ make
|
|
|
|
$ make check-libcxx # optional
|
|
|
|
|
|
|
|
|
2017-02-10 11:58:20 +08:00
|
|
|
Experimental Support for Windows
|
|
|
|
--------------------------------
|
|
|
|
|
|
|
|
The Windows support requires building with clang-cl as cl does not support one
|
|
|
|
required extension: `#include_next`. Furthermore, VS 2015 or newer (19.00) is
|
|
|
|
required. In the case of clang-cl, we need to specify the "MS Compatibility
|
|
|
|
Version" as it defaults to 2014 (18.00).
|
|
|
|
|
|
|
|
CMake + Visual Studio
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Building with Visual Studio currently does not permit running tests. However,
|
|
|
|
it is the simplest way to build.
|
|
|
|
|
|
|
|
.. code-block:: batch
|
|
|
|
|
|
|
|
> cmake -G "Visual Studio 14 2015" ^
|
|
|
|
-T "LLVM-vs2014" ^
|
|
|
|
-DLIBCXX_ENABLE_SHARED=YES ^
|
|
|
|
-DLIBCXX_ENABLE_STATIC=NO ^
|
|
|
|
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=NO ^
|
|
|
|
\path\to\libcxx
|
|
|
|
> cmake --build .
|
|
|
|
|
|
|
|
CMake + ninja
|
|
|
|
~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
Building with ninja is required for development to enable tests.
|
|
|
|
Unfortunately, doing so requires additional configuration as we cannot
|
|
|
|
just specify a toolset.
|
|
|
|
|
|
|
|
.. code-block:: batch
|
|
|
|
|
|
|
|
> cmake -G Ninja ^
|
|
|
|
-DCMAKE_MAKE_PROGRAM=/path/to/ninja ^
|
|
|
|
-DCMAKE_SYSTEM_NAME=Windows ^
|
|
|
|
-DCMAKE_C_COMPILER=clang-cl ^
|
|
|
|
-DCMAKE_C_FLAGS="-fms-compatibility-version=19.00 --target=i686--windows" ^
|
2017-12-03 18:18:35 +08:00
|
|
|
-DCMAKE_CXX_COMPILER=clang-cl ^
|
2017-02-10 11:58:20 +08:00
|
|
|
-DCMAKE_CXX_FLAGS="-fms-compatibility-version=19.00 --target=i686--windows" ^
|
|
|
|
-DLLVM_PATH=/path/to/llvm/tree ^
|
|
|
|
-DLIBCXX_ENABLE_SHARED=YES ^
|
|
|
|
-DLIBCXX_ENABLE_STATIC=NO ^
|
|
|
|
-DLIBCXX_ENABLE_EXPERIMENTAL_LIBRARY=NO ^
|
|
|
|
\path\to\libcxx
|
|
|
|
> /path/to/ninja cxx
|
|
|
|
> /path/to/ninja check-cxx
|
|
|
|
|
|
|
|
Note that the paths specified with backward slashes must use the `\\` as the
|
|
|
|
directory separator as clang-cl may otherwise parse the path as an argument.
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
.. _`libc++abi`: http://libcxxabi.llvm.org/
|
|
|
|
|
|
|
|
|
|
|
|
.. _CMake Options:
|
|
|
|
|
|
|
|
CMake Options
|
|
|
|
=============
|
|
|
|
|
|
|
|
Here are some of the CMake variables that are used often, along with a
|
|
|
|
brief explanation and LLVM-specific notes. For full documentation, check the
|
|
|
|
CMake docs or execute ``cmake --help-variable VARIABLE_NAME``.
|
|
|
|
|
|
|
|
**CMAKE_BUILD_TYPE**:STRING
|
|
|
|
Sets the build type for ``make`` based generators. Possible values are
|
|
|
|
Release, Debug, RelWithDebInfo and MinSizeRel. On systems like Visual Studio
|
|
|
|
the user sets the build type with the IDE settings.
|
|
|
|
|
|
|
|
**CMAKE_INSTALL_PREFIX**:PATH
|
|
|
|
Path where LLVM will be installed if "make install" is invoked or the
|
|
|
|
"INSTALL" target is built.
|
|
|
|
|
|
|
|
**CMAKE_CXX_COMPILER**:STRING
|
|
|
|
The C++ compiler to use when building and testing libc++.
|
|
|
|
|
|
|
|
|
|
|
|
.. _libcxx-specific options:
|
|
|
|
|
|
|
|
libc++ specific options
|
|
|
|
-----------------------
|
|
|
|
|
2016-05-04 06:32:08 +08:00
|
|
|
.. option:: LIBCXX_INSTALL_LIBRARY:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Toggle the installation of the library portion of libc++.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_INSTALL_HEADERS:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Toggle the installation of the libc++ headers.
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
.. option:: LIBCXX_ENABLE_ASSERTIONS:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Build libc++ with assertions enabled.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_BUILD_32_BITS:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
2016-09-16 11:47:53 +08:00
|
|
|
Build libc++ as a 32 bit library. Also see `LLVM_BUILD_32_BITS`.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_SHARED:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
2016-09-16 11:47:53 +08:00
|
|
|
Build libc++ as a shared library. Either `LIBCXX_ENABLE_SHARED` or
|
|
|
|
`LIBCXX_ENABLE_STATIC` has to be enabled.
|
2016-08-09 06:57:25 +08:00
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_STATIC:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
2016-09-16 11:47:53 +08:00
|
|
|
Build libc++ as a static library. Either `LIBCXX_ENABLE_SHARED` or
|
|
|
|
`LIBCXX_ENABLE_STATIC` has to be enabled.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
.. option:: LIBCXX_LIBDIR_SUFFIX:STRING
|
|
|
|
|
|
|
|
Extra suffix to append to the directory where libraries are to be installed.
|
2016-09-16 11:47:53 +08:00
|
|
|
This option overrides `LLVM_LIBDIR_SUFFIX`.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
2017-07-11 10:39:50 +08:00
|
|
|
.. option:: LIBCXX_INSTALL_PREFIX:STRING
|
|
|
|
|
|
|
|
**Default**: ``""``
|
|
|
|
|
|
|
|
Define libc++ destination prefix.
|
2016-05-04 06:32:08 +08:00
|
|
|
|
2019-01-06 14:14:31 +08:00
|
|
|
.. option:: LIBCXX_HERMETIC_STATIC_LIBRARY:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
2019-04-11 07:44:27 +08:00
|
|
|
Do not export any symbols from the static libc++ library.
|
2019-01-06 14:14:31 +08:00
|
|
|
This is useful when the static libc++ library is being linked into shared
|
|
|
|
libraries that may be used in with other shared libraries that use different
|
2019-08-24 03:42:09 +08:00
|
|
|
C++ library. We want to avoid exporting any libc++ symbols in that case.
|
2019-01-06 14:14:31 +08:00
|
|
|
|
2019-03-21 08:04:31 +08:00
|
|
|
.. option:: LIBCXX_ENABLE_FILESYSTEM:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON`` except on Windows.
|
|
|
|
|
|
|
|
This option can be used to enable or disable the filesystem components on
|
|
|
|
platforms that may not support them. For example on Windows.
|
|
|
|
|
2016-05-04 06:32:08 +08:00
|
|
|
.. _libc++experimental options:
|
|
|
|
|
|
|
|
libc++experimental Specific Options
|
|
|
|
------------------------------------
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Build and test libc++experimental.a.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_INSTALL_EXPERIMENTAL_LIBRARY:BOOL
|
|
|
|
|
2016-09-07 09:15:10 +08:00
|
|
|
**Default**: ``LIBCXX_ENABLE_EXPERIMENTAL_LIBRARY AND LIBCXX_INSTALL_LIBRARY``
|
2016-05-04 06:32:08 +08:00
|
|
|
|
|
|
|
Install libc++experimental.a alongside libc++.
|
|
|
|
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
.. _ABI Library Specific Options:
|
|
|
|
|
|
|
|
ABI Library Specific Options
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
.. option:: LIBCXX_CXX_ABI:STRING
|
|
|
|
|
|
|
|
**Values**: ``none``, ``libcxxabi``, ``libcxxrt``, ``libstdc++``, ``libsupc++``.
|
|
|
|
|
|
|
|
Select the ABI library to build libc++ against.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_CXX_ABI_INCLUDE_PATHS:PATHS
|
|
|
|
|
|
|
|
Provide additional search paths for the ABI library headers.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_CXX_ABI_LIBRARY_PATH:PATH
|
|
|
|
|
|
|
|
Provide the path to the ABI library that libc++ should link against.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_STATIC_ABI_LIBRARY:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
|
|
|
If this option is enabled, libc++ will try and link the selected ABI library
|
|
|
|
statically.
|
|
|
|
|
2015-10-16 06:41:51 +08:00
|
|
|
.. option:: LIBCXX_ENABLE_ABI_LINKER_SCRIPT:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON`` by default on UNIX platforms other than Apple unless
|
|
|
|
'LIBCXX_ENABLE_STATIC_ABI_LIBRARY' is ON. Otherwise the default value is ``OFF``.
|
|
|
|
|
|
|
|
This option generate and installs a linker script as ``libc++.so`` which
|
|
|
|
links the correct ABI library.
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
.. option:: LIBCXXABI_USE_LLVM_UNWINDER:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
|
|
|
Build and use the LLVM unwinder. Note: This option can only be used when
|
|
|
|
libc++abi is the C++ ABI library used.
|
|
|
|
|
|
|
|
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
libc++ Feature Options
|
2015-08-23 03:40:49 +08:00
|
|
|
----------------------
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_EXCEPTIONS:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Build libc++ with exception support.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ENABLE_RTTI:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON``
|
|
|
|
|
|
|
|
Build libc++ with run time type information.
|
|
|
|
|
2019-07-05 03:08:16 +08:00
|
|
|
.. option:: LIBCXX_INCLUDE_TESTS:BOOL
|
|
|
|
|
|
|
|
**Default**: ``ON`` (or value of ``LLVM_INCLUDE_DIR``)
|
|
|
|
|
|
|
|
Build the libc++ tests.
|
|
|
|
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
.. option:: LIBCXX_INCLUDE_BENCHMARKS:BOOL
|
2015-10-14 07:48:28 +08:00
|
|
|
|
2016-08-30 03:50:49 +08:00
|
|
|
**Default**: ``ON``
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
|
|
|
|
Build the libc++ benchmark tests and the Google Benchmark library needed
|
|
|
|
to support them.
|
|
|
|
|
2018-11-15 04:38:46 +08:00
|
|
|
.. option:: LIBCXX_BENCHMARK_TEST_ARGS:STRING
|
|
|
|
|
|
|
|
**Default**: ``--benchmark_min_time=0.01``
|
|
|
|
|
|
|
|
A semicolon list of arguments to pass when running the libc++ benchmarks using the
|
|
|
|
``check-cxx-benchmarks`` rule. By default we run the benchmarks for a very short amount of time,
|
|
|
|
since the primary use of ``check-cxx-benchmarks`` is to get test and sanitizer coverage, not to
|
|
|
|
get accurate measurements.
|
|
|
|
|
2016-10-31 06:53:00 +08:00
|
|
|
.. option:: LIBCXX_BENCHMARK_NATIVE_STDLIB:STRING
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
|
2016-10-31 06:53:00 +08:00
|
|
|
**Default**:: ``""``
|
|
|
|
|
|
|
|
**Values**:: ``libc++``, ``libstdc++``
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
|
|
|
|
Build the libc++ benchmark tests and Google Benchmark library against the
|
2019-10-02 04:34:50 +08:00
|
|
|
specified standard library on the platform. On Linux this can be used to
|
2016-10-31 06:53:00 +08:00
|
|
|
compare libc++ to libstdc++ by building the benchmark tests against both
|
|
|
|
standard libraries.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_BENCHMARK_NATIVE_GCC_TOOLCHAIN:STRING
|
|
|
|
|
|
|
|
Use the specified GCC toolchain and standard library when building the native
|
|
|
|
stdlib benchmark tests.
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
|
[libcxx] By default, do not use internal_linkage to hide symbols from the ABI
Summary:
https://reviews.llvm.org/D49240 led to symbol size problems in Chromium, and
we expect this may be the case in other projects built in debug mode too.
Instead, unless users explicitly ask for internal_linkage, we use always_inline
like we used to.
In the future, when we have a solution that allows us to drop always_inline
without falling back on internal_linkage, we can replace always_inline by
that.
Note that this commit introduces a change in contract for existing libc++
users: by default, libc++ used to guarantee that TUs built with different
versions of libc++ could be linked together. With the introduction of the
_LIBCPP_HIDE_FROM_ABI_PER_TU macro, the default behavior is that TUs built
with different libc++ versions are not guaranteed to link. This is a change
in contract but not a change in behavior, since the current implementation
still allows linking TUs built with different libc++ versions together.
Reviewers: EricWF, mclow.lists, dexonsmith, hans, rnk
Subscribers: christof, cfe-commits
Differential Revision: https://reviews.llvm.org/D50652
llvm-svn: 339874
2018-08-16 20:44:28 +08:00
|
|
|
.. option:: LIBCXX_HIDE_FROM_ABI_PER_TU_BY_DEFAULT:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
|
|
|
Pick the default for whether to constrain ABI-unstable symbols to
|
|
|
|
each individual translation unit. This setting controls whether
|
|
|
|
`_LIBCPP_HIDE_FROM_ABI_PER_TU_BY_DEFAULT` is defined by default --
|
|
|
|
see the documentation of that macro for details.
|
|
|
|
|
[libcxx] Add support for benchmark tests using Google Benchmark.
Summary:
This patch does the following:
1. Checks in a copy of the Google Benchmark library into the libc++ repo under `utils/google-benchmark`.
2. Teaches libc++ how to build Google Benchmark against both (A) in-tree libc++ and (B) the platforms native STL.
3. Allows performance benchmarks to be built as part of the libc++ build.
Building the benchmarks (and Google Benchmark) is off by default. It must be enabled using the CMake option `-DLIBCXX_INCLUDE_BENCHMARKS=ON`. When this option is enabled the tests under `libcxx/benchmarks` can be built using the `libcxx-benchmarks` target.
On Linux platforms where libstdc++ is the default STL the CMake option `-DLIBCXX_BUILD_BENCHMARKS_NATIVE_STDLIB=ON` can be used to build each benchmark test against libstdc++ as well. This is useful for comparing performance between standard libraries.
Support for benchmarks is currently very minimal. They must be manually run by the user and there is no mechanism for detecting performance regressions.
Known Issues:
* `-DLIBCXX_INCLUDE_BENCHMARKS=ON` is only supported for Clang, and not GCC, since the `-stdlib=libc++` option is needed to build Google Benchmark.
Reviewers: danalbert, dberlin, chandlerc, mclow.lists, jroelofs
Subscribers: chandlerc, dberlin, tberghammer, danalbert, srhines, hfinkel
Differential Revision: https://reviews.llvm.org/D22240
llvm-svn: 276049
2016-07-20 07:07:03 +08:00
|
|
|
|
|
|
|
libc++ ABI Feature Options
|
|
|
|
--------------------------
|
2015-10-14 07:48:28 +08:00
|
|
|
|
|
|
|
The following options allow building libc++ for a different ABI version.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ABI_VERSION:STRING
|
|
|
|
|
|
|
|
**Default**: ``1``
|
|
|
|
|
|
|
|
Defines the target ABI version of libc++.
|
|
|
|
|
|
|
|
.. option:: LIBCXX_ABI_UNSTABLE:BOOL
|
|
|
|
|
|
|
|
**Default**: ``OFF``
|
|
|
|
|
|
|
|
Build the "unstable" ABI version of libc++. Includes all ABI changing features
|
|
|
|
on top of the current stable version.
|
|
|
|
|
2018-10-31 05:44:53 +08:00
|
|
|
.. option:: LIBCXX_ABI_NAMESPACE:STRING
|
|
|
|
|
|
|
|
**Default**: ``__n`` where ``n`` is the current ABI version.
|
|
|
|
|
|
|
|
This option defines the name of the inline ABI versioning namespace. It can be used for building
|
|
|
|
custom versions of libc++ with unique symbol names in order to prevent conflicts or ODR issues
|
|
|
|
with other libc++ versions.
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
When providing a custom namespace, it's the users responsibility to ensure the name won't cause
|
2018-11-16 22:57:47 +08:00
|
|
|
conflicts with other names defined by libc++, both now and in the future. In particular, inline
|
|
|
|
namespaces of the form ``__[0-9]+`` are strictly reserved by libc++ and may not be used by users.
|
|
|
|
Doing otherwise could cause conflicts and hinder libc++ ABI evolution.
|
2018-10-31 05:44:53 +08:00
|
|
|
|
2017-10-05 07:17:12 +08:00
|
|
|
.. option:: LIBCXX_ABI_DEFINES:STRING
|
|
|
|
|
|
|
|
**Default**: ``""``
|
|
|
|
|
|
|
|
A semicolon-separated list of ABI macros to persist in the site config header.
|
|
|
|
See ``include/__config`` for the list of ABI macros.
|
|
|
|
|
2019-05-29 10:21:37 +08:00
|
|
|
|
|
|
|
.. option:: LIBCXX_HAS_MERGED_TYPEINFO_NAMES_DEFAULT
|
|
|
|
|
|
|
|
**Default**: ``None``. When defined this option overrides the libraries default configuration
|
|
|
|
for whether merged type info names are present.
|
|
|
|
|
|
|
|
|
|
|
|
Build ``std::type_info`` with the assumption that type info names for a type have been fully
|
|
|
|
merged are unique across the entire program. This may not be the case for libraries built with
|
|
|
|
``-Bsymbolic`` or due to compiler or linker bugs (Ex. llvm.org/PR37398).
|
|
|
|
|
|
|
|
When the value is ``ON`` typeinfo comparisons compare only the pointer value, otherwise ``strcmp``
|
|
|
|
is used as a fallback.
|
|
|
|
|
|
|
|
|
2015-08-23 03:40:49 +08:00
|
|
|
.. _LLVM-specific variables:
|
|
|
|
|
|
|
|
LLVM-specific options
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
.. option:: LLVM_LIBDIR_SUFFIX:STRING
|
|
|
|
|
|
|
|
Extra suffix to append to the directory where libraries are to be
|
|
|
|
installed. On a 64-bit architecture, one could use ``-DLLVM_LIBDIR_SUFFIX=64``
|
|
|
|
to install libraries to ``/usr/lib64``.
|
|
|
|
|
|
|
|
.. option:: LLVM_BUILD_32_BITS:BOOL
|
|
|
|
|
|
|
|
Build 32-bits executables and libraries on 64-bits systems. This option is
|
2019-10-02 04:34:50 +08:00
|
|
|
available only on some 64-bits Unix systems. Defaults to OFF.
|
2015-08-23 03:40:49 +08:00
|
|
|
|
|
|
|
.. option:: LLVM_LIT_ARGS:STRING
|
|
|
|
|
|
|
|
Arguments given to lit. ``make check`` and ``make clang-test`` are affected.
|
|
|
|
By default, ``'-sv --no-progress-bar'`` on Visual C++ and Xcode, ``'-sv'`` on
|
|
|
|
others.
|
|
|
|
|
|
|
|
|
|
|
|
Using Alternate ABI libraries
|
|
|
|
=============================
|
|
|
|
|
|
|
|
|
|
|
|
.. _libsupcxx:
|
|
|
|
|
|
|
|
Using libsupc++ on Linux
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
You will need libstdc++ in order to provide libsupc++.
|
|
|
|
|
|
|
|
Figure out where the libsupc++ headers are on your system. On Ubuntu this
|
|
|
|
is ``/usr/include/c++/<version>`` and ``/usr/include/c++/<version>/<target-triple>``
|
|
|
|
|
|
|
|
You can also figure this out by running
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ echo | g++ -Wp,-v -x c++ - -fsyntax-only
|
|
|
|
ignoring nonexistent directory "/usr/local/include/x86_64-linux-gnu"
|
|
|
|
ignoring nonexistent directory "/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../../x86_64-linux-gnu/include"
|
|
|
|
#include "..." search starts here:
|
|
|
|
#include <...> search starts here:
|
|
|
|
/usr/include/c++/4.7
|
|
|
|
/usr/include/c++/4.7/x86_64-linux-gnu
|
|
|
|
/usr/include/c++/4.7/backward
|
|
|
|
/usr/lib/gcc/x86_64-linux-gnu/4.7/include
|
|
|
|
/usr/local/include
|
|
|
|
/usr/lib/gcc/x86_64-linux-gnu/4.7/include-fixed
|
|
|
|
/usr/include/x86_64-linux-gnu
|
|
|
|
/usr/include
|
|
|
|
End of search list.
|
|
|
|
|
|
|
|
Note that the first two entries happen to be what we are looking for. This
|
|
|
|
may not be correct on other platforms.
|
|
|
|
|
|
|
|
We can now run CMake:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ CC=clang CXX=clang++ cmake -G "Unix Makefiles" \
|
|
|
|
-DLIBCXX_CXX_ABI=libstdc++ \
|
|
|
|
-DLIBCXX_CXX_ABI_INCLUDE_PATHS="/usr/include/c++/4.7/;/usr/include/c++/4.7/x86_64-linux-gnu/" \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
<libc++-source-dir>
|
|
|
|
|
|
|
|
|
|
|
|
You can also substitute ``-DLIBCXX_CXX_ABI=libsupc++``
|
|
|
|
above, which will cause the library to be linked to libsupc++ instead
|
|
|
|
of libstdc++, but this is only recommended if you know that you will
|
|
|
|
never need to link against libstdc++ in the same executable as libc++.
|
|
|
|
GCC ships libsupc++ separately but only as a static library. If a
|
|
|
|
program also needs to link against libstdc++, it will provide its
|
|
|
|
own copy of libsupc++ and this can lead to subtle problems.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ make cxx
|
|
|
|
$ make install
|
|
|
|
|
|
|
|
You can now run clang with -stdlib=libc++.
|
2016-06-02 10:16:28 +08:00
|
|
|
|
|
|
|
|
|
|
|
.. _libcxxrt_ref:
|
|
|
|
|
|
|
|
Using libcxxrt on Linux
|
|
|
|
------------------------
|
|
|
|
|
|
|
|
You will need to keep the source tree of `libcxxrt`_ available
|
|
|
|
on your build machine and your copy of the libcxxrt shared library must
|
|
|
|
be placed where your linker will find it.
|
|
|
|
|
|
|
|
We can now run CMake like:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ CC=clang CXX=clang++ cmake -G "Unix Makefiles" \
|
|
|
|
-DLIBCXX_CXX_ABI=libcxxrt \
|
|
|
|
-DLIBCXX_CXX_ABI_INCLUDE_PATHS=path/to/libcxxrt-sources/src \
|
|
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
|
|
|
<libc++-source-directory>
|
|
|
|
$ make cxx
|
|
|
|
$ make install
|
|
|
|
|
|
|
|
Unfortunately you can't simply run clang with "-stdlib=libc++" at this point, as
|
|
|
|
clang is set up to link for libc++ linked to libsupc++. To get around this
|
|
|
|
you'll have to set up your linker yourself (or patch clang). For example,
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ clang++ -stdlib=libc++ helloworld.cpp \
|
|
|
|
-nodefaultlibs -lc++ -lcxxrt -lm -lc -lgcc_s -lgcc
|
|
|
|
|
|
|
|
Alternately, you could just add libcxxrt to your libraries list, which in most
|
|
|
|
situations will give the same result:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ clang++ -stdlib=libc++ helloworld.cpp -lcxxrt
|
|
|
|
|
|
|
|
.. _`libcxxrt`: https://github.com/pathscale/libcxxrt/
|
|
|
|
|
|
|
|
|
|
|
|
Using a local ABI library installation
|
|
|
|
---------------------------------------
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
This is not recommended in almost all cases.
|
|
|
|
|
|
|
|
These instructions should only be used when you can't install your ABI library.
|
|
|
|
|
|
|
|
Normally you must link libc++ against a ABI shared library that the
|
|
|
|
linker can find. If you want to build and test libc++ against an ABI
|
2019-10-02 04:34:50 +08:00
|
|
|
library not in the linker's path you need to set
|
2016-06-02 10:16:28 +08:00
|
|
|
``-DLIBCXX_CXX_ABI_LIBRARY_PATH=/path/to/abi/lib`` when configuring CMake.
|
|
|
|
|
|
|
|
An example build using libc++abi would look like:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
$ CC=clang CXX=clang++ cmake \
|
|
|
|
-DLIBCXX_CXX_ABI=libc++abi \
|
|
|
|
-DLIBCXX_CXX_ABI_INCLUDE_PATHS="/path/to/libcxxabi/include" \
|
|
|
|
-DLIBCXX_CXX_ABI_LIBRARY_PATH="/path/to/libcxxabi-build/lib" \
|
|
|
|
path/to/libcxx
|
|
|
|
$ make
|
|
|
|
|
|
|
|
When testing libc++ LIT will automatically link against the proper ABI
|
|
|
|
library.
|