From 36ceda4eced243c1fab487b878e20944d1238d50 Mon Sep 17 00:00:00 2001 From: Jose Fonseca Date: Mon, 13 Apr 2015 13:08:13 +0100 Subject: [PATCH] docs: Improve LLVM_USE_CRT_xxx instructions. --- docs/llvmpipe.html | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) diff --git a/docs/llvmpipe.html b/docs/llvmpipe.html index 72db93a..f603bd6 100644 --- a/docs/llvmpipe.html +++ b/docs/llvmpipe.html @@ -58,15 +58,37 @@ It's the fastest software rasterizer for Mesa.

- 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. + -DLLVM_USE_CRT_xxx=yyy as described below. +

+ + + + + + + + + + + + + + + + + + + + +
LLVM build-typeMesa build-type
debug,checkedrelease,profile
Debug-DLLVM_USE_CRT_DEBUG=MTd-DLLVM_USE_CRT_DEBUG=MT
Release-DLLVM_USE_CRT_RELEASE=MTd-DLLVM_USE_CRT_RELEASE=MT
+

You can build only the x86 target by passing -DLLVM_TARGETS_TO_BUILD=X86 to cmake.

-- 2.7.4