From 10bd811abc6e3e1f3ee2253f145b39ae8a43865e Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 2 May 2019 21:20:51 +0200 Subject: [PATCH] docs: fixup botched table Pandoc silently fails on colspan, breaking this table. But rst supports this just fine, so let's just hand-convert this table instead. Reviewed-by: Eric Engestrom Part-of: --- docs/llvmpipe.rst | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/docs/llvmpipe.rst b/docs/llvmpipe.rst index 7a2effe..826bf05 100644 --- a/docs/llvmpipe.rst +++ b/docs/llvmpipe.rst @@ -54,7 +54,19 @@ Requirements to be built with a matching CRT as Mesa, and you'll need to pass ``-DLLVM_USE_CRT_xxx=yyy`` as described below. - LLVM build-type + + +-----------------+----------------------------------------------------------------+ + | LLVM build-type | Mesa build-type | + | +--------------------------------+-------------------------------+ + | | debug,checked | release,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. - scons (optional) -- 2.7.4