diff --git a/clang/www/get_started.html b/clang/www/get_started.html
--- a/clang/www/get_started.html
+++ b/clang/www/get_started.html
@@ -69,9 +69,9 @@
cd llvm-project
mkdir build (in-tree build is not supported)
cd build
+ This builds both LLVM and Clang for debug mode and takes a lot of time and space. Alternatively -DCMAKE_BUILD_TYPE=Release" can be use to make a release build.
cmake -DLLVM_ENABLE_PROJECTS=clang -G "Unix Makefiles" ../llvm
make
- This builds both LLVM and Clang for debug mode.
Note: For subsequent Clang development, you can just run
make clang.
CMake allows you to generate project files for several IDEs: Xcode,