diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-23 00:30:22 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-04-23 00:30:22 +0000 |
commit | f5af6ada3b0570db1afc19029cad8fb8320676ef (patch) | |
tree | 4df12ad7fe5c5902fd8601d164291a94fa078f10 /docs/Packaging.html | |
parent | 624dc1d4abf26a3ccd474f85a39058a99a9053ca (diff) | |
download | external_llvm-f5af6ada3b0570db1afc19029cad8fb8320676ef.zip external_llvm-f5af6ada3b0570db1afc19029cad8fb8320676ef.tar.gz external_llvm-f5af6ada3b0570db1afc19029cad8fb8320676ef.tar.bz2 |
docs: Introduce cascading style <div> and <p> continued on <h[2-5]>.
<h2>Section Example</h2>
<div> <!-- h2+div is applied -->
<p>Section preamble.</p>
<h3>Subsection Example</h3>
<p> <!-- h3+p is applied -->
Subsection body
</p>
<!-- End of section body -->
</div>
FIXME: Care H5 better.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@130040 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/Packaging.html')
-rw-r--r-- | docs/Packaging.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/Packaging.html b/docs/Packaging.html index 86d6ca1..7261cc2 100644 --- a/docs/Packaging.html +++ b/docs/Packaging.html @@ -19,7 +19,7 @@ <!--=========================================================================--> <h2><a name="overview">Overview</a></h2> <!--=========================================================================--> -<div class="doc_text"> +<div> <p>LLVM sets certain default configure options to make sure our developers don't break things for constrained platforms. These settings are not optimal for most @@ -36,7 +36,7 @@ developed against each. <!--=========================================================================--> <h2><a name="compilation">Compile Flags</a></h2> <!--=========================================================================--> -<div class="doc_text"> +<div> <p>LLVM runs much more quickly when it's optimized and assertions are removed. However, such a build is currently incompatible with users who build without @@ -67,7 +67,7 @@ versions of LLVM in parallel. The following configure flags are relevant: <!--=========================================================================--> <h2><a name="cxx-features">C++ Features</a></h2> <!--=========================================================================--> -<div class="doc_text"> +<div> <dl> <dt>RTTI</dt><dd>LLVM disables RTTI by default. Add <tt>REQUIRES_RTTI=1</tt> @@ -80,7 +80,7 @@ versions of LLVM in parallel. The following configure flags are relevant: <!--=========================================================================--> <h2><a name="shared-library">Shared Library</a></h2> <!--=========================================================================--> -<div class="doc_text"> +<div> <p>Configure with <tt>--enable-shared</tt> to build <tt>libLLVM-<var>major</var>.<var>minor</var>.(so|dylib)</tt> and link the tools @@ -91,7 +91,7 @@ against it. This saves lots of binary size at the cost of some startup time. <!--=========================================================================--> <h2><a name="deps">Dependencies</a></h2> <!--=========================================================================--> -<div class="doc_text"> +<div> <dl> <dt><tt>--enable-libffi</tt></dt><dd>Depend on <a |