From 250918eb177828db01fb92ba13152ddbc0d0ce92 Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Wed, 31 Dec 2008 14:36:41 +0000 Subject: [PATCH] CMake: Added some VC++ specific info to CMake.html. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61521 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CMake.html | 44 +++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 41 insertions(+), 3 deletions(-) diff --git a/docs/CMake.html b/docs/CMake.html index 921264fd7a3..27ec88ec947 100644 --- a/docs/CMake.html +++ b/docs/CMake.html @@ -15,13 +15,17 @@
  • Quick start
  • Basic CMake usage
  • Options and variables -
    @@ -199,7 +203,7 @@

    Here are listed some of the CMake variables that are used often, along with a brief explanation and LLVM-specific notes. For full documentation, check the CMake docs or execute cmake - --help-variable VARIABLE_NAME. + --help-variable VARIABLE_NAME.

    CMAKE_BUILD_TYPE:STRING
    @@ -306,6 +310,40 @@ + + + + +
    + +

    Notes for specific compilers and/or platforms.

    + +
    + + + + +
    + +

    For linking the JIT into your executable, add

    + +
    +

    /INCLUDE:_X86TargetMachineModule

    +
    + +

    to your linker options. This is required for adding the relevant + LLVM object code to the executable. Not doing this will result on + some methods returning NULL (ExecutionEngine::create, for + instance).

    + +
    + + +
    Oscar Fuentes
    LLVM Compiler Infrastructure
    - Last modified: $Date: 2008-10-27 00:59:36 +0100 (Mon, 27 Oct 2008) $ + Last modified: $Date: 2008-12-31 03:59:36 +0100 (Wed, 31 Dec 2008) $
    -- 2.11.0