diff options
author | Chris Bieneman <beanz@apple.com> | 2016-03-18 22:11:51 +0000 |
---|---|---|
committer | Chris Bieneman <beanz@apple.com> | 2016-03-18 22:11:51 +0000 |
commit | c89ed09200d70adfecddbd773648aaafc5cb1184 (patch) | |
tree | 82a24da087bcdadab98d205667a8237b159b92bc | |
parent | 7e453bb8be17aa5f07f609091c288c3ae5f885dc (diff) | |
download | bcm5719-llvm-c89ed09200d70adfecddbd773648aaafc5cb1184.tar.gz bcm5719-llvm-c89ed09200d70adfecddbd773648aaafc5cb1184.zip |
Fixing autocorrect changing cmake->make
llvm-svn: 263843
-rw-r--r-- | llvm/docs/AdvancedBuilds.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/docs/AdvancedBuilds.rst b/llvm/docs/AdvancedBuilds.rst index e3db51ef469..dc808a0ab83 100644 --- a/llvm/docs/AdvancedBuilds.rst +++ b/llvm/docs/AdvancedBuilds.rst @@ -34,7 +34,7 @@ CLANG_ENABLE_BOOTSTRAP. .. code-block:: console - $ make -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On <path to source> + $ cmake -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On <path to source> $ ninja stage2 This command itself isn't terribly useful because it assumes default @@ -62,7 +62,7 @@ You can build an Apple Clang compiler using the following commands: .. code-block:: console - $ make -G Ninja -C <path to clang>/cmake/caches/Apple-stage1.cmake <path to source> + $ cmake -G Ninja -C <path to clang>/cmake/caches/Apple-stage1.cmake <path to source> $ ninja stage2-distribution This CMake invocation configures the stage1 host compiler, and sets @@ -96,7 +96,7 @@ running: .. code-block:: console - $ make -G Ninja -C <path_to_clang>/cmake/caches/PGO.cmake <source dir> + $ cmake -G Ninja -C <path_to_clang>/cmake/caches/PGO.cmake <source dir> $ ninja stage2-instrumented-generate-profdata If you let that run for a few hours or so, it will place a profdata file in your |