libcxx fork for Darling build
Go to file
Hal Finkel 475cf02300 [CMake] Fix in-tree libcxxabi build support after r283659
r283659 changed the argument to gen_link_script.py from SCRIPT_ABI_LIBNAME to
LIBCXX_LIBRARIES_PUBLIC, assuming that all of the items in the
LIBCXX_LIBRARIES_PUBLIC list were library names. This is not right, however,
for in-tree libcxxabi builds, we might have the target name in this list. There
was special logic to fixup SCRIPT_ABI_LIBNAME for this situation; change it to
apply a similar fixup for LIBCXX_LIBRARIES_PUBLIC.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@283684 91177308-0d34-0410-b5e6-96231b3b80d8
2016-10-09 02:49:31 +00:00
benchmarks Improve CMake output when registering benchmarks 2016-09-07 00:57:26 +00:00
cmake [CMake] NFC. Missed the other uses in r280406 2016-09-01 19:47:39 +00:00
docs [libc++] Clarify _LIBCPP_NEW_DELETE_VIS for Windows 2016-09-28 22:28:51 +00:00
include Disable alignment support of 0x4000 for Win32. https://reviews.llvm.org/D25053 2016-10-07 23:19:04 +00:00
lib [CMake] Fix in-tree libcxxabi build support after r283659 2016-10-09 02:49:31 +00:00
src Partially revert overflow checking in last_write_time 2016-09-29 01:01:26 +00:00
test Remove all _LIBCPP_VERSION tests from under test/std 2016-10-08 01:32:56 +00:00
utils [cmake] Split linked libraries into private & public, for linker script 2016-10-08 10:27:45 +00:00
www Mark issues 2514, 2519, 2536 and 2475 as done 2016-10-06 13:59:18 +00:00
.arcconfig Upgrade arcconfig to use https 2016-07-18 02:02:49 +00:00
.gitignore Add MSVC specifics to .gitignore. Patch from STL@microsoft.com 2016-08-03 05:51:19 +00:00
CMakeLists.txt [cmake] Split linked libraries into private & public, for linker script 2016-10-08 10:27:45 +00:00
CREDITS.TXT Add entry to CREDITS.TXT for propagate_const 2016-06-19 19:36:28 +00:00
LICENSE.TXT Update copyright year to 2016. 2016-03-30 22:39:53 +00:00
TODO.TXT Remove out of date items in TODO.txt 2016-09-27 01:28:47 +00:00

libc++ Documentation
====================

The libc++ documentation is written using the Sphinx documentation generator. It is
currently tested with Sphinx 1.1.3.

To build the documents into html configure libc++ with the following cmake options:

  * -DLLVM_ENABLE_SPHINX=ON
  * -DLIBCXX_INCLUDE_DOCS=ON

After configuring libc++ with these options the make rule `docs-libcxx-html`
should be available.