https://github.com/davidwinter/static-clang-tools-binaries
https://github.com/davidwinter/static-clang-tools-binaries
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davidwinter/static-clang-tools-binaries
- Owner: davidwinter
- License: mit
- Created: 2024-06-25T11:41:54.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-27T10:09:09.000Z (11 months ago)
- Last Synced: 2025-02-24T21:05:42.649Z (3 months ago)
- Size: 63.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Static binaries for clang-tools
Binaries available for:
- Linux
- macOS (both Intel and Apple Silicon)
- WindowsTools:
- `clang-format`
- `clang-query`
- `clang-tidy`
- `clang-apply-replacements`## Proto
Plugins available for [proto](https://moonrepo.dev/proto):
### `clang-format`
```sh
proto plugin add clang-format "https://raw.githubusercontent.com/davidwinter/static-clang-tools-binaries/main/proto/clang-format.toml"
proto install clang-format
```### `clang-query`
```sh
proto plugin add clang-query "https://raw.githubusercontent.com/davidwinter/static-clang-tools-binaries/main/proto/clang-query.toml"
proto install clang-query
```### `clang-tidy`
```sh
proto plugin add clang-tidy "https://raw.githubusercontent.com/davidwinter/static-clang-tools-binaries/main/proto/clang-tidy.toml"
proto install clang-tidy
```### `clang-apply-replacements`
```sh
proto plugin add clang-apply-replacements "https://raw.githubusercontent.com/davidwinter/static-clang-tools-binaries/main/proto/clang-apply-replacements.toml"
proto install clang-apply-replacements
```_A big shout out to https://github.com/muttleyxd/clang-tools-static-binaries for the original workflow code that made this possible._