-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add compilers.rules C and C++, Go, Java, and Rust compilers are added Also added Bazel, Cmake, Ninja, and Meson build systems * compilers.rules: add linkers Change to uppercase Compiler * Change to 13 nice, is stable
- Loading branch information
1 parent
7abaddd
commit e9f8494
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# C | ||
{ "name": "clang", "type": "Compiler" } | ||
{ "name": "clang++", "type": "Compiler" } | ||
{ "name": "cmake", "type": "Compiler" } | ||
{ "name": "gcc", "type": "Compiler" } | ||
{ "name": "g++", "type": "Compiler" } | ||
{ "name": "make", "type": "Compiler" } | ||
|
||
# Go | ||
{ "name": "go", "type": "Compiler" } | ||
|
||
# Java | ||
{ "name": "java", "type": "Compiler" } | ||
{ "name": "javac", "type": "Compiler" } | ||
|
||
# Rust | ||
{ "name": "cargo", "type": "Compiler" } | ||
{ "name": "rustc", "type": "Compiler" } | ||
{ "name": "rust-analyzer", "type": "Compiler" } | ||
|
||
# Linkers | ||
{ "name": "lld", "type": "Compiler" } | ||
{ "name": "mold", "type": "Compiler" } | ||
{ "name": "ld", "type": "Compiler" } | ||
{ "name": "ld.bfd", "type": "Compiler" } | ||
{ "name": "ld.mold", "type": "Compiler" } | ||
{ "name": "ld.lld", "type": "Compiler" } | ||
{ "name": "lto1-ltrans", "type": "Compiler" } | ||
|
||
# Build systems | ||
{ "name": "bazel", "type": "Compiler" } | ||
{ "name": "ninja", "type": "Compiler" } | ||
{ "name": "meson", "type": "Compiler" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters