[PATCH] D111490: [DOCS] Update ninja build doc (new: github link, build command, and chmod requirements)

Samuel Marks via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Sat Oct 9 10:36:15 PDT 2021


SamuelMarks updated this revision to Diff 378463.
SamuelMarks added a comment.

Also updates appveyor to latest release version of ninja


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D111490/new/

https://reviews.llvm.org/D111490

Files:
  clang/docs/HowToSetupToolingForLLVM.rst
  clang/docs/LibASTMatchersTutorial.rst
  libcxx/appveyor-reqs-install.cmd


Index: libcxx/appveyor-reqs-install.cmd
===================================================================
--- libcxx/appveyor-reqs-install.cmd
+++ libcxx/appveyor-reqs-install.cmd
@@ -38,7 +38,7 @@
 :: Install Ninja
 ::###########################################################################
 if NOT EXIST ninja (
-  appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.6.0/ninja-win.zip -FileName ninja.zip
+  appveyor DownloadFile https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip -FileName ninja.zip
   7z x ninja.zip -oC:\projects\deps\ninja > nul
   rm ninja.zip
 )
Index: clang/docs/LibASTMatchersTutorial.rst
===================================================================
--- clang/docs/LibASTMatchersTutorial.rst
+++ clang/docs/LibASTMatchersTutorial.rst
@@ -30,7 +30,7 @@
 .. code-block:: console
 
       cd ~/clang-llvm
-      git clone git://github.com/ninja-build/ninja.git
+      git clone https://github.com/ninja-build/ninja
       ./configure.py --bootstrap
       sudo cp ninja /usr/local/bin/
 
Index: clang/docs/HowToSetupToolingForLLVM.rst
===================================================================
--- clang/docs/HowToSetupToolingForLLVM.rst
+++ clang/docs/HowToSetupToolingForLLVM.rst
@@ -154,7 +154,7 @@
 
 .. code-block:: console
 
-  $ git clone git://github.com/ninja-build/ninja.git
+  $ git clone https://github.com/ninja-build/ninja
   $ cd ninja/
   $ ./configure.py --bootstrap
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D111490.378463.patch
Type: text/x-patch
Size: 1485 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20211009/57969935/attachment.bin>


More information about the cfe-commits mailing list