From 3684238ecab94721c49ff7b8a58ee1aee3ed6a72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Matos?= Date: Tue, 2 Jun 2015 13:22:24 +0100 Subject: [PATCH] Update GettingStarted.md --- docs/GettingStarted.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 92de860f..c61f81b1 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -72,14 +72,13 @@ run the upgrade process after generation. 1. Compile LLVM solution in *RelWithDebInfo* mode The following CMake variables should be enabled: - - LLVM_ENABLE_CXX11 (enables C++11 support) - LLVM_ENABLE_LIBCXX (enables libc++ standard library support) - LLVM_BUILD_32_BITS for 32-bit builds (defaults to 64-bit) ```shell cd deps/llvm/build -cmake -G "Unix Makefiles" -DLLVM_ENABLE_CXX11=true -DLLVM_ENABLE_LIBCXX=true -DLLVM_BUILD_32_BITS=true -DCMAKE_BUILD_TYPE=RelWithDebInfo .. +cmake -G "Unix Makefiles" -DLLVM_ENABLE_LIBCXX=true -DLLVM_BUILD_32_BITS=true -DCMAKE_BUILD_TYPE=RelWithDebInfo .. make ```