Skip to content

Instantly share code, notes, and snippets.

package main
import (
fmt
)
func main() {
fmt.Println("Hello!")
}

this is a test

hello!

  • task 1
  • task 2
  • task 3
@gensmusic
gensmusic / CCacheMacNinja.md
Last active September 21, 2015 05:59 — forked from jjgod/CCacheMacNinja.md
Using ccache for Mac builds

Introduction

ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching previous compilations and detecting when the same compilation is being done again. This often results in a significant speedup in common compilations, especially when switching between branches. This page is about using ccache on Mac with clang and ninja build system. If you want to use Xcode, please refer to the old CCacheMac page.

In order to use ccache with clang, you need to use the current git HEAD, since the most recent version (3.1.9) doesn't contain the patch needed for using chromium style plugin.

Installation

To install ccache with [homebrew](http://mxcl.