Skip to content

Latest commit

 

History

History
76 lines (59 loc) · 3.25 KB

CONTRIBUTING.md

File metadata and controls

76 lines (59 loc) · 3.25 KB

Contributing to ccache

Want to contribute to ccache? Awesome!

Asking a question?

There are several options:

  1. Ask a question in discussions.
  2. Post your question to the mailing list.
  3. Chat in the Gitter room.

Reporting an issue?

Please include at least the following information in your bug report:

  1. Which version of ccache you use.
  2. Which compiler you use, if applicable.
  3. Which operating system you use, if applicable.
  4. The problematic behavior you experienced (actual behavior).
  5. How you would like ccache to behave instead (expected behavior).
  6. Steps to reproduce the problematic behavior.

Also, consider reading Effective Ways to Get Help from Maintainers.

Contributing code?

The preferred way is to create one or several pull request with your proposal(s) on GitHub.

Here are some hints to make the process smoother:

  • If you plan to implement major changes it is wise to open an issue on GitHub (or ask in the Gitter room, or send a mail to the mailing list) asking for comments on your plans before doing the bulk of the work. That way you can avoid potentially wasting time on doing something that may need major rework to be accepted, or maybe doesn't end up being accepted at all.
  • Is your pull request "work in progress", i.e. you don't think that it's ready for merging yet but you want early comments and CI test results? Then create a draft pull request as described in this Github blog post.
  • Please follow the ccache's code style (see the section below).
  • Consider A Note About Git Commit Messages when writing commit messages.

Code style

Ccache was written in C99 until 2019 when it started being converted to C++11. The conversion is a slow work in progress, which is why there is some C-style code left. Please refrain from doing large C to C++ conversions; do it little by little.

Source code formatting is defined by .clang-format in the root directory. The format is loosely based on LLVM's code formatting style with some exceptions. It's highly recommended to install Clang-Format 6.0 or newer and run make format to format changes according to ccache's code style. Or even better: set up your editor to run Clang-Format automatically when saving. If you don't run Clang-Format then the ccache authors have to do it for you.

Please follow these conventions:

  • Use UpperCamelCase for types (e.g. classes and structs) and namespaces.
  • Use UPPER_CASE names for macros and (non-class )enum values.
  • Use snake_case for other names (functions, variables, enum class values, etc.).
  • Use an m_ prefix for non-public member variables.
  • Use a g_ prefix for global mutable variables.
  • Use a k_ prefix for global constants.
  • Always use curly braces around if/for/while/do bodies, even if they only contain one statement.