From f3dcc692b033ff1b7742176e916fb0f05d82d010 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Matos?= Date: Tue, 14 Jul 2015 19:16:46 +0100 Subject: [PATCH] Update the OSX build guide to create the LLVM build folder before using it. --- docs/GettingStarted.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/GettingStarted.md b/docs/GettingStarted.md index 9a0fe847..4cf0acbd 100644 --- a/docs/GettingStarted.md +++ b/docs/GettingStarted.md @@ -76,7 +76,7 @@ run the upgrade process after generation. - LLVM_BUILD_32_BITS for 32-bit builds (defaults to 64-bit) ```shell -cd deps/llvm/build +mkdir -p deps/llvm/build && cd deps/llvm/build cmake -G "Unix Makefiles" -DLLVM_ENABLE_LIBCXX=true -DLLVM_BUILD_32_BITS=true -DCMAKE_BUILD_TYPE=RelWithDebInfo ..