Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Again build tools can/does come with a ninja but the default one doesn’t run on WoA. I built ninja from source (https://github.com/ninja-build/ninja ) using the cmake build method.

Checking out LLVM

The git for windows install will default to converting line endings to windows style. This applies to any file git thinks is ASCII, which includes some archive files used for llvm tests. As stated in https://llvm.org/docs/GettingStarted.html#checkout-llvm-from-git , use the following to override this behaviour:

Code Block
git clone --config core.autocrlf=false https://github.com/llvm/llvm-project.git

Testing the Install

First, open a plain terminal “Command Prompt”. Ignore the cross prompts shortcuts you might find in the start menu.

...