diff options
author | Alexey Samsonov <samsonov@google.com> | 2013-04-23 08:28:39 +0000 |
---|---|---|
committer | Alexey Samsonov <samsonov@google.com> | 2013-04-23 08:28:39 +0000 |
commit | ee03c949b85036b68c261dcc27dca064ee7e525d (patch) | |
tree | 14f060f70c0c6e5346a0f120c196f6718b060cd4 /docs | |
parent | a8958769ea5583d58ae51931d8b1271c23fd20ea (diff) | |
download | external_llvm-ee03c949b85036b68c261dcc27dca064ee7e525d.zip external_llvm-ee03c949b85036b68c261dcc27dca064ee7e525d.tar.gz external_llvm-ee03c949b85036b68c261dcc27dca064ee7e525d.tar.bz2 |
Add basic zlib support to LLVM. This would allow to use compression/uncompression in selected LLVM tools.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@180083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/CMake.rst | 4 | ||||
-rw-r--r-- | docs/GettingStarted.rst | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/docs/CMake.rst b/docs/CMake.rst index 991e4ba..8459081 100644 --- a/docs/CMake.rst +++ b/docs/CMake.rst @@ -271,6 +271,10 @@ LLVM-specific variables **LLVM_USE_INTEL_JITEVENTS**:BOOL Enable building support for Intel JIT Events API. Defaults to OFF +**LLVM_ENABLE_ZLIB**:BOOL + Build with zlib to support compression/uncompression in LLVM tools. + Defaults to ON. + Executing the test suite ======================== diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst index 0bbbafc..4ad2c79 100644 --- a/docs/GettingStarted.rst +++ b/docs/GettingStarted.rst @@ -229,6 +229,8 @@ uses the package and provides other details. +--------------------------------------------------------------+-----------------+---------------------------------------------+ | `libtool <http://savannah.gnu.org/projects/libtool>`_ | 1.5.22 | Shared library manager\ :sup:`4` | +--------------------------------------------------------------+-----------------+---------------------------------------------+ +| `zlib <http://zlib.net>`_ | >=1.2.3.4 | Compression library\ :sup:`5` | ++--------------------------------------------------------------+-----------------+---------------------------------------------+ .. note:: @@ -243,6 +245,8 @@ uses the package and provides other details. #. If you want to make changes to the configure scripts, you will need GNU autoconf (2.60), and consequently, GNU M4 (version 1.4 or higher). You will also need automake (1.9.6). We only use aclocal from that package. + #. Optional, adds compression/uncompression capabilities to selected LLVM + tools. Additionally, your compilation host is expected to have the usual plethora of Unix utilities. Specifically: |