Displaying 5 results from an estimated 5 matches for "llvm_enable_sphinx".
Did you mean:
dllvm_enable_sphinx
2017 Apr 03
2
Debugging Docs and llvm.org/docs/
...sanity check on the
>> docs?
>>
>>
>> Just run correct version of sphinx locally and check whether everything is
>> correct.
>>
>>
>> I see -- nothing part of the CMake build, say "check-docs" that would do
>> this?
>>
>
> LLVM_ENABLE_SPHINX will turn it on.
> //Use Sphinx to generate llvm documentation.
> LLVM_ENABLE_SPHINX:BOOL=OFF
Just to add to that the targets you want are
docs-llvm-html
docs-llvm-man
e.g.
```
ninja docs-llvm-html
```
as Daniel mentioned you need to set `LLVM_ENABLE_SPHINX` to on.
2017 Apr 03
6
Debugging Docs and llvm.org/docs/
> On 3 Apr 2017, at 22:47, Alex Denisov <1101.debian at gmail.com> wrote:
>
> The HTML generated using sphinx[1].
> At the bottom of each page you can see actual version of sphinx used to generate this page.
>
Thanks -- interesting that the docs haven't been updated since March 15th:
© Copyright 2003-2017, LLVM Project. Last updated on 2017-03-16. Created using Sphinx
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote:
[ brutal-snip ]
...
> [ TODO#S: Before doing a 2nd build (and in a 3rd run using more
> optimized binaries) ]
>
> How do I anable LTO via CMAKE?
>
>
> LLVM_ENALBLE_LTO=On
>
[ v4 of my build-script attached ]
Hi Chris,
thanks for the response!
That seems to work (see below).
$ cd
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a
/lot/ of errors like this (strangely I hit none of these in check-llvm,
only in check-clang):
Any ideas?
==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes
at address 0x631000014800
==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...ependent Code
LLVM_ENABLE_PIC:BOOL=ON
//Semicolon-separated list of projects to build (clang;libcxx;libcxxabi;lldb;compiler-rt;lld;polly),
// or "all".
LLVM_ENABLE_PROJECTS:STRING=
//Enable run time type information
LLVM_ENABLE_RTTI:BOOL=OFF
//Use Sphinx to generate llvm documentation.
LLVM_ENABLE_SPHINX:BOOL=OFF
//Use terminfo database if available.
LLVM_ENABLE_TERMINFO:BOOL=ON
//Use threads if available.
LLVM_ENABLE_THREADS:BOOL=ON
//Enable compiler warnings.
LLVM_ENABLE_WARNINGS:BOOL=ON
//Fail and stop if a warning is triggered.
LLVM_ENABLE_WERROR:BOOL=ON
//Use zlib for compression/decompre...