From 5f7359ca6af2fad644577751f6a82aed6e5df510 Mon Sep 17 00:00:00 2001 From: Hajime Hoshi Date: Mon, 12 Mar 2018 02:12:36 +0900 Subject: [PATCH] Updated FAQ (markdown) --- FAQ.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/FAQ.md b/FAQ.md index 8426712..a9eb19b 100644 --- a/FAQ.md +++ b/FAQ.md @@ -1,15 +1,5 @@ # General -## `go run` is too slow - -You can install Ebiten library with the below command so that you can avoid compiling Ebiten each time when compiling your game. - -```shell -go install github.com/hajimehoshi/ebiten/... -``` - -As of Go 1.10, build cache system is changed and you might not need the above tips. - ## Why do the examples use the build tag `example`? With the build tag, `go get -u github.com/hajimehoshi/ebiten/...` doesn't install the example binaries in your `$GOPATH/bin`.