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
.data

hello_str:
    .string "Hello, world!\n"


    .set hello_str_length, . - hello_str - 1

.text

.globl  main

.type   main, @function


main:
    movl    $4, %eax

    movl    $1, %ebx

    movl    $hello_str, %ecx

    movl    $hello_str_length, %edx

    int     $0x80

    movl    $1, %eax
    movl    $0, %ebx
    int     $0x80

    .size   main, . - main