sccache 0.14.0

Sccache is a ccache-like tool. It is used as a compiler wrapper and avoids compilation when possible. Sccache has the capability to utilize caching in remote storage environments, including various cloud storage options, or alternatively, in local storage.
Documentation
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include "myheader.h"

int main() {
    std::cout << "Main file: " << __FILE__ << std::endl;
    std::cout << get_message() << std::endl;
    std::cout << "Sum: " << calculate_sum(5, 3) << std::endl;
    print_header_info();
    return 0;
}