diff options
author | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-05-01 15:27:47 +0000 |
---|---|---|
committer | Simon Pilgrim <llvm-dev@redking.me.uk> | 2016-05-01 15:27:47 +0000 |
commit | 0aa27cd29ba3f2cf98b1f48bc6e653d8a66630e8 (patch) | |
tree | 1216e4f4e17a92b9c402452442aecd5c52afca55 | |
parent | ac1e519944e19684c757ba1e37340cc30dcae860 (diff) | |
download | bcm5719-llvm-0aa27cd29ba3f2cf98b1f48bc6e653d8a66630e8.tar.gz bcm5719-llvm-0aa27cd29ba3f2cf98b1f48bc6e653d8a66630e8.zip |
Document the LLVM_ENABLE_EXPENSIVE_CHECKS cmake option introduced in r268050
llvm-svn: 268197
-rw-r--r-- | llvm/docs/CMake.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/llvm/docs/CMake.rst b/llvm/docs/CMake.rst index 259d42fc3f4..7f4fcdcb38b 100644 --- a/llvm/docs/CMake.rst +++ b/llvm/docs/CMake.rst @@ -267,6 +267,9 @@ LLVM-specific variables link against LLVM libraries and make use of C++ exceptions in your own code that need to propagate through LLVM code. Defaults to OFF. +**LLVM_ENABLE_EXPENSIVE_CHECKS**:BOOL + Enable additional time/memory expensive checking. Defaults to OFF. + **LLVM_ENABLE_PIC**:BOOL Add the ``-fPIC`` flag to the compiler command-line, if the compiler supports this flag. Some systems, like Windows, do not need this flag. Defaults to ON. |