Lines Matching +refs:clang +refs:format +refs:executable
52 3. A modern C compiler. gcc 6+, clang 7+, Microsoft Visual Studio 2019+ or
168 - arm64-linux-clang.cmake
534 The coding style used by this project is enforced with clang-format using the
536 [.clang-format](https://chromium.googlesource.com/webm/aom/+/main/.clang-format)
539 You can download clang-format using your system's package manager, or directly
541 [documentation](https://clang.llvm.org/docs/ClangFormat.html) on llvm.org.
542 Output from clang-format varies by clang-format version, for best results your
543 version should match the one used on Jenkins. You can find the clang-format
544 version by reading the comment in the `.clang-format` file linked above.
546 Before pushing changes for review you can format your code with:
549 # Apply clang-format to modified .c, .h and .cc files
550 $ clang-format -i --style=file \
554 Check the .clang-format file for the version used to generate it if there is any
557 Some Git installations have clang-format integration. Here are some examples:
560 # Apply clang-format to all staged changes:
561 $ git clang-format
563 # Clang format all staged and unstaged changes:
564 $ git clang-format -f
566 # Clang format all staged and unstaged changes interactively:
567 $ git clang-format -f -p
617 # Next, ensure that the downloaded commit-msg script is executable: