Displaying 20 results from an estimated 24 matches for "dllvm_enable_sphinx".
2020 Jul 28
3
Building a single .rst file
Folks,
Total newbie here. What is the simplest way to build a single .rst file so that I can look at the generated HTML? I have CMake, Python, and Sphinx installed.
~~ Paul
2020 Jul 29
2
Building a single .rst file
...I have CMake, Python, and Sphinx
>> installed.
>
>Hi Paul,
>
>I'm not sure if there are ways to build a single .rst file. But I
>usually build LLVM documentation via the following steps.
>
>```
>$ cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release
>-DLLVM_ENABLE_SPHINX=On $YOUR_LLVM_PROJECT_PATH/llvm
>$ make docs-llvm-html
>```
>
>Best Regards,
>Xing
2020 Jul 30
2
Help with build
...vm\CMakeLists.txt. For instance:
>
>C:\> cmake -SÂ <your llvm-project checkout>\llvm -B C:/LLVM/Build
Thank you for responding. I'm trying to build just the LLVM documentation. Other folks suggested the following:
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_SPHINX=On c:\llvm\llvm-project\llvm\docs
I run that command in the C:/LLVM/Build directory, which I assume then is the default for -B. Anyway, I changed my command to:
cmake -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_SPHINX=On -S c:/llvm/llvm-project/llvm/docs -B c:/llvm/buil...
2017 Oct 04
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
...MANDS=ON -G Ninja -DCMAKE_CXX_COMPILER=clang++-3.9 -DCMAKE_C_COMPILER=clang-3.9 -DCMAKE_ASM_COMPILER=clang-3.9 -DLLVM_USE_LINKER=gold -DLLVM_USE_SPLIT_DWARF=On -DBUILD_SHARED_LIBS=ON -DLLVM_OPTIMIZED_TABLEGEN=On -DCOMPILER_RT_BUILD_XRAY=On -DLLVM_ENABLE_ASSERTIONS=On -DCOMPILER_RT_INCLUDE_TESTS=On -DLLVM_ENABLE_SPHINX=On -DSPHINX_WARNINGS_AS_ERRORS=On -DCMAKE_CXX_FLAGS="-Wpedantic" -DCMAKE_CXX_COMPILER_LAUNCHER=ccache ../llvm
I'm building in Linux, x86_64.
Cheers
>
> Thanks,
> -Chris
>
>> On Oct 3, 2017, at 4:58 AM, Dean Michael Berris <dean.berris at gmail.com> wrote:...
2018 May 01
1
ninja docs-clang-html fails with tools/clang/docs/ClangCommandLineReference.rst:22:Duplicate explicit target name: "cmdoption-clang--prefix".
Hi,
Since I've migrated to a newer linux distro I can't build docs-clang-html.
1. get LLVM
2. cmake -GNinja -DLLVM_ENABLE_SPHINX=YES -DSPHINX_OUTPUT_HTML=YES
-DLLVM_BUILD_DOCS=YES ~/llvm
3. ninja docs-clang-html
=======================
[1/2] Generating html Sphinx documentation for clang into
"/tmp/LLVM/tools/clang/docs/html"
FAILED: tools/clang/docs/CMakeFiles/docs-clang-html
cd /tmp/LLVM/tools/clang/docs &&a...
2015 Jul 28
2
[LLVMdev] Regression testing on MSYS2 host with mingw-w64
...KE_INSTALL_PREFIX=/mingw64 \
> -DCMAKE_BUILD_TYPE=Release \
> -DLLVM_TARGETS_TO_BUILD="ARM;AArch64;CppBackend;X86" \
> -DLLVM_ENABLE_ASSERTIONS=OFF \
> -DLLVM_ENABLE_THREADS=0 \
> -DPYTHON_EXECUTABLE=/mingw64/bin/python2.exe \
> -DLLVM_ENABLE_FFI=ON \
> -DLLVM_ENABLE_SPHINX=ON \
> ../llvm
>
Is this not supported?
We do have a build of libffi in mingw-w64 and it works well with other
projects.
On Tue, Jul 28, 2015 at 6:49 PM, Yaron Keren <yaron.keren at gmail.com> wrote:
> This test results in UNSUPPORTED on my system, since config.enable_ffi =
>...
2016 Sep 20
4
(Thin)LTO llvm build
The configuration we’re mentioning is a 2-stage bootstrap: You need first to build without LTO your own clang, and then use it for the LTO build.
—
Mehid
> On Sep 20, 2016, at 10:17 AM, Michael Kruse <llvmdev at meinersbur.de> wrote:
>
> I am the author of Polly's/ISL's platform tests and could reproduce
> the problem on my system with this error message:
>
>
2020 Jul 30
2
Help with build
I need some help getting the LLVM build to work. If this is not the right place to ask, please let me know. I set MSE and Malwarebytes so they ignore the build directory tree and don't complain about a.exe. I also ran this CMake disabling both of them, just in case that mattered; it didn't.
Here are the outputs from CMake and the contents of CMakeError.log. Any help would be appreciated.
2017 Aug 03
2
fatal error: clang/Basic/Version.inc: No such file or directory
...mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/local/llvm-trunk \
-DCMAKE_BUILD_TYPE:STRING="Release" \
-DLLVM_PARALLEL_COMPILE_JOBS:STRING="4" \
-DLLVM_PARALLEL_LINK_JOBS:STRING="4" \
-DLLVM_TARGETS_TO_BUILD:STRING="NVPTX;X86" \
-DLLVM_ENABLE_SPHINX:BOOL=ON \
-DSPHINX_OUTPUT_MAN:BOOL=ON \
-DCMAKE_C_COMPILER:STRING="/usr/local/gcc-5.3.0/bin/gcc" \
-DCMAKE_C_FLAGS:STRING="-m64 -I/usr/local/valgrind/include" \
-DCMAKE_CXX_COMPILER:STRING="/usr/local/gcc-5.3.0/bin/g++" \
-DCMAKE_CXX_FLAGS:STRING="-...
2018 Sep 10
2
OpenJDK8 failed to work after compiled by LLVM 8 for X86
... -DCMAKE_CXX_FLAGS="-std=c++11 -fPIC" \
-DLLVM_BUILD_LLVM_DYLIB=ON \
-DLLVM_LINK_LLVM_DYLIB=ON \
-DLLVM_INSTALL_UTILS=ON \
-DLLVM_ENABLE_RTTI=ON \
-DLLVM_ENABLE_FFI=ON \
-DLLVM_ENABLE_EH=ON \
-DLLVM_BUILD_TESTS=ON \
-DLLVM_BUILD_DOCS=OFF \
-DLLVM_ENABLE_SPHINX=OFF \
-DLLVM_ENABLE_DOXYGEN=OFF \
-DLLDB_DISABLE_LIBEDIT=1 \
-DSPHINX_WARNINGS_AS_ERRORS=OFF \
-DFFI_INCLUDE_DIR=$(pkg-config --variable=includedir libffi) \
-DFFI_LIBRARY_DIR:PATH="$(pkg-config --variable=libdir libffi)" \
-DLLVM_BINUTILS_INCDIR=/usr/include...
2015 Aug 01
1
[LLVMdev] [libcxx] How to update libcxx.llvm.org to use Sphinx generated doc?
On Fri, Jul 31, 2015 at 12:01 AM, Dan Liew <dan at su-root.co.uk> wrote:
> Hi Eric,
>
> On 20 July 2015 at 10:41, Eric Fiselier <eric at efcs.ca> wrote:
>> Hi All,
>>
>> I'm working on rewriting libc++'s documentation using Sphinx.
>> Hopefully it will be easier to write and maintain documentation using
>> restructured text and not HTML.
2015 Jul 28
0
[LLVMdev] Regression testing on MSYS2 host with mingw-w64
...>> -DCMAKE_BUILD_TYPE=Release \
>> -DLLVM_TARGETS_TO_BUILD="ARM;AArch64;CppBackend;X86" \
>> -DLLVM_ENABLE_ASSERTIONS=OFF \
>> -DLLVM_ENABLE_THREADS=0 \
>> -DPYTHON_EXECUTABLE=/mingw64/bin/python2.exe \
>> -DLLVM_ENABLE_FFI=ON \
>> -DLLVM_ENABLE_SPHINX=ON \
>> ../llvm
>>
>
> Is this not supported?
> We do have a build of libffi in mingw-w64 and it works well with other
> projects.
>
>
On Tue, Jul 28, 2015 at 6:49 PM, Yaron Keren <yaron.keren at gmail.com> wrote:
> This test results in UNSUPPORTED on my sy...
2017 Oct 03
2
Unit tests in compiler-rt not rebuilding with changes to runtimes?
Hi llvm-dev,
I have unit tests set up in the XRay implementation (compiler-rt/lib/xray/tests/unit) following the pattern that the TSAN and other sanitiser unit tests. However, I'm running into the following problem:
When I make changes to the runtime (in this case, XRay) and do `ninja all check-xray`, it seems that the unit tests don't get re-liked to the new version of the runtime.
It
2016 Sep 26
2
(Thin)LTO llvm build
...gt; -DLLVM_ENABLE_BACKTRACES=OFF \
> -DLLVM_BUILD_EXAMPLES=OFF \
> -DLLVM_INCLUDE_EXAMPLES=OFF \
> -DLLVM_BUILD_TESTS=OFF \
> -DLLVM_INCLUDE_TESTS=OFF \
> -DLLVM_BUILD_DOCS=OFF \
> -DLLVM_INCLUDE_DOCS=OFF \
> -DLLVM_ENABLE_DOXYGEN=OFF \
> -DLLVM_ENABLE_SPHINX=OFF \
> -DLLDB_DISABLE_PYTHON=ON \
> -DCLANG_PLUGIN_SUPPORT=OFF \
> -DLLVM_ENABLE_LTO=Thin \
> -DCMAKE_AR=$PREFIX/bin/llvm-ar \
> -DCMAKE_RANLIB=$PREFIX/bin/llvm-ranlib
>
> $ ninja -j4
> /usr/bin/ld: error: Could not create temporary file: Too many open f...
2015 Jul 28
0
[LLVMdev] Regression testing on MSYS2 host with mingw-w64
This test results in UNSUPPORTED on my system, since config.enable_ffi =
"OFF". This is the result of LLVM_ENABLE_FFI which is OFF by default. Is it
turned ON in your build?
2015-07-28 17:32 GMT+03:00 Martell Malone <martellmalone at gmail.com>:
> Hi Yaron,
>
> I know you sent me some emails before about regression testing on MSYS2
> So you might have some idea about
2015 Jul 31
0
[LLVMdev] [libcxx] How to update libcxx.llvm.org to use Sphinx generated doc?
Hi Eric,
On 20 July 2015 at 10:41, Eric Fiselier <eric at efcs.ca> wrote:
> Hi All,
>
> I'm working on rewriting libc++'s documentation using Sphinx.
> Hopefully it will be easier to write and maintain documentation using
> restructured text and not HTML.
>
> What steps do I need to take to get libc++ a Sphinx builder and get
> the required changes made for
2016 Sep 27
4
(Thin)LTO llvm build
On Tue, Sep 27, 2016 at 6:53 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>
> > On Sep 27, 2016, at 2:18 AM, Carsten Mattner <carstenmattner at gmail.com>
> wrote:
> >
> >> On Mon, Sep 26, 2016 at 11:02 PM, Teresa Johnson <tejohnson at google.com>
> wrote:
> >> I'll either need to get a reproducer from you and/or try to repro
2015 Jul 28
2
[LLVMdev] Regression testing on MSYS2 host with mingw-w64
Hi Yaron,
I know you sent me some emails before about regression testing on MSYS2
So you might have some idea about this
I am getting a regression error on check-llvm.
With the llvm/trunk/test/ExecutionEngine/Interpreter/intrinsics.ll
FAIL: LLVM :: ExecutionEngine/Interpreter/intrinsics.ll (7635 of 14266)
> ******************** TEST 'LLVM ::
>
2018 Sep 11
3
OpenJDK8 failed to work after compiled by LLVM 8 for X86
...LLVM_DYLIB=ON \
>> -DLLVM_LINK_LLVM_DYLIB=ON \
>> -DLLVM_INSTALL_UTILS=ON \
>> -DLLVM_ENABLE_RTTI=ON \
>> -DLLVM_ENABLE_FFI=ON \
>> -DLLVM_ENABLE_EH=ON \
>> -DLLVM_BUILD_TESTS=ON \
>> -DLLVM_BUILD_DOCS=OFF \
>> -DLLVM_ENABLE_SPHINX=OFF \
>> -DLLVM_ENABLE_DOXYGEN=OFF \
>> -DLLDB_DISABLE_LIBEDIT=1 \
>> -DSPHINX_WARNINGS_AS_ERRORS=OFF \
>> -DFFI_INCLUDE_DIR=$(pkg-config --variable=includedir libffi) \
>> -DFFI_LIBRARY_DIR:PATH="$(pkg-config --variable=libdir libffi)&quo...
2018 Sep 12
2
OpenJDK8 failed to work after compiled by LLVM 8 for X86
...\
>>>> -DLLVM_INSTALL_UTILS=ON \
>>>> -DLLVM_ENABLE_RTTI=ON \
>>>> -DLLVM_ENABLE_FFI=ON \
>>>> -DLLVM_ENABLE_EH=ON \
>>>> -DLLVM_BUILD_TESTS=ON \
>>>> -DLLVM_BUILD_DOCS=OFF \
>>>> -DLLVM_ENABLE_SPHINX=OFF \
>>>> -DLLVM_ENABLE_DOXYGEN=OFF \
>>>> -DLLDB_DISABLE_LIBEDIT=1 \
>>>> -DSPHINX_WARNINGS_AS_ERRORS=OFF \
>>>> -DFFI_INCLUDE_DIR=$(pkg-config --variable=includedir libffi) \
>>>> -DFFI_LIBRARY_DIR:PATH="$(...