summaryrefslogtreecommitdiffstats
path: root/docs/llvmpipe.html
diff options
context:
space:
mode:
authorJose Fonseca <jfonseca@vmware.com>2015-04-13 13:08:13 +0100
committerJose Fonseca <jfonseca@vmware.com>2015-04-13 13:08:13 +0100
commit36ceda4eced243c1fab487b878e20944d1238d50 (patch)
tree8c116b8454be6ce802ef6c6835fbe46324305623 /docs/llvmpipe.html
parentfa1b3e1501da3d24ec4205e0056d67ef9d2663ac (diff)
downloadexternal_mesa3d-36ceda4eced243c1fab487b878e20944d1238d50.tar.gz
external_mesa3d-36ceda4eced243c1fab487b878e20944d1238d50.tar.bz2
external_mesa3d-36ceda4eced243c1fab487b878e20944d1238d50.zip
docs: Improve LLVM_USE_CRT_xxx instructions.
Diffstat (limited to 'docs/llvmpipe.html')
-rw-r--r--docs/llvmpipe.html32
1 files changed, 27 insertions, 5 deletions
diff --git a/docs/llvmpipe.html b/docs/llvmpipe.html
index 72db93aaf6..f603bd6466 100644
--- a/docs/llvmpipe.html
+++ b/docs/llvmpipe.html
@@ -58,15 +58,37 @@ It's the fastest software rasterizer for Mesa.
</pre>
<p>
- For Windows you will need to build LLVM from source with MSVC or MINGW
- (either natively or through cross compilers) and CMake, and set the LLVM
- environment variable to the directory you installed it to.
+ For Windows you will need to build LLVM from source with MSVC or MINGW
+ (either natively or through cross compilers) and CMake, and set the LLVM
+ environment variable to the directory you installed it to.
LLVM will be statically linked, so when building on MSVC it needs to be
built with a matching CRT as Mesa, and you'll need to pass
- -DLLVM_USE_CRT_RELEASE=MTd for debug and checked builds,
- -DLLVM_USE_CRT_RELEASE=MTd for profile and release builds.
+ <code>-DLLVM_USE_CRT_xxx=yyy</code> as described below.
+ </p>
+
+ <table border="1">
+ <tr>
+ <th rowspan="2">LLVM build-type</th>
+ <th colspan="2" align="center">Mesa build-type</th>
+ </tr>
+ <tr>
+ <th>debug,checked</th>
+ <th>release,profile</th>
+ </tr>
+ <tr>
+ <th>Debug</th>
+ <td><code>-DLLVM_USE_CRT_DEBUG=MTd</code></td>
+ <td><code>-DLLVM_USE_CRT_DEBUG=MT</code></td>
+ </tr>
+ <tr>
+ <th>Release</th>
+ <td><code>-DLLVM_USE_CRT_RELEASE=MTd</code></td>
+ <td><code>-DLLVM_USE_CRT_RELEASE=MT</code></td>
+ </tr>
+ </table>
+ <p>
You can build only the x86 target by passing -DLLVM_TARGETS_TO_BUILD=X86
to cmake.
</p>