[PATCH] D58286: [docs] Document LLVM_ENABLE_IDE
Shoaib Meenai via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Feb 15 12:40:20 PST 2019
This revision was automatically updated to reflect the committed changes.
Closed by commit rL354167: [docs] Document LLVM_ENABLE_IDE (authored by smeenai, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D58286?vs=187067&id=187068#toc
Repository:
rL LLVM
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D58286/new/
https://reviews.llvm.org/D58286
Files:
llvm/trunk/docs/CMake.rst
Index: llvm/trunk/docs/CMake.rst
===================================================================
--- llvm/trunk/docs/CMake.rst
+++ llvm/trunk/docs/CMake.rst
@@ -281,6 +281,15 @@
**LLVM_ENABLE_EXPENSIVE_CHECKS**:BOOL
Enable additional time/memory expensive checking. Defaults to OFF.
+**LLVM_ENABLE_IDE**:BOOL
+ Tell the build system that an IDE is being used. This in turn disables the
+ creation of certain convenience build system targets, such as the various
+ ``install-*`` and ``check-*`` targets, since IDEs don't always deal well with
+ a large number of targets. This is usually autodetected, but it can be
+ configured manually to explicitly control the generation of those targets. One
+ scenario where a manual override may be desirable is when using Visual Studio
+ 2017's CMake integration, which would not be detected as an IDE otherwise.
+
**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.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D58286.187068.patch
Type: text/x-patch
Size: 1060 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190215/00ca1eb9/attachment.bin>
More information about the llvm-commits
mailing list