From 3751542e1e442c798e456f11d49e48710d90a0eb Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 13 Jun 2017 15:55:31 +0200 Subject: sys: check in generated files We used to have all generated files checked in. Later we removed them (now users are supposed to run make to generate them). This causes several problems: - go get does not work as it tries to build everything straight away (go get -d works, but users are confused) - users don't run make and complain that build is broken - users don't re-run make after updates and complain that build is broken - hard to integrate into other build system (even if they support building Go, they don't support running sysgen out-of-the-box) Fixes #216 --- .gitignore | 4 ---- 1 file changed, 4 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 0dfa16ce5..018a6d605 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,3 @@ workdir* bin/ -sys/sys_amd64.go -sys/sys_arm64.go -sys/sys_ppc64le.go -executor/syscalls.h -- cgit mrf-deployment