diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-19 10:54:49 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-19 12:22:57 +0200 |
commit | 653bcf6027e015b67388396f28d170f6ce493fd9 (patch) | |
tree | 21781ed6d82506c8ab46b70b7521a894af7ca596 | |
parent | f76ddd12ff91da8be2b5b867eab31def5e4f560d (diff) | |
download | rules-cc-653bcf6027e015b67388396f28d170f6ce493fd9.tar.gz |
["CC", "defaults"] add basic field documentation
-rw-r--r-- | CC/RULES | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -19,6 +19,40 @@ , "AR" , "PATH" ] + , "field_doc": + { "base": ["Other targets (using the same rule) to inherit values from."] + , "CC": ["The C compiler to use"] + , "CXX": ["The C++ compiler to use"] + , "AR": ["The archiver tool to use"] + , "CFLAGS": + [ "Flags for C compilation. Specifying this field overwrites" + , "values from \"base\"." + ] + , "CXXFLAGS": + [ "Flags for C++ compilation. Specifying this field overwrites" + , "values from \"base\"." + ] + , "LDFLAGS": + [ "Linker flags for linking the final CC library. Specifying this field" + , "overwrites values from \"base\"." + ] + , "ADD_CFLAGS": + [ "Additional compilation flags for C. Specifying this field" + , "extends values from \"base\"." + ] + , "ADD_CXXFLAGS": + [ "Additional compilation flags for C++. Specifying this field" + , "extends values from \"base\"." + ] + , "ADD_LDFLAGS": + [ "Additional linker flags for linking the final CC library. Specifying" + , "this field extends values from \"base\"." + ] + , "PATH": + [ "Path for looking up the compilers. Individual paths are joined" + , "with \":\"." + ] + } , "imports": {"base-provides": "defaults-base-provides"} , "expression": { "type": "let*" |