diff options
| author | Michael Taufen <mtaufen@google.com> | 2017-05-19 07:00:58 -0700 |
|---|---|---|
| committer | Michael Taufen <mtaufen@google.com> | 2017-05-19 07:00:58 -0700 |
| commit | a70fc8bbd7fdb685815ff134a13dbcf3543a029c (patch) | |
| tree | 67a13a1409a884b4eef472c1b25a561629fc7106 | |
| parent | 8f34704596b6e5871f6c005abc511d4b4f2b09c3 (diff) | |
Add tip for removing compiler error limit
| -rw-r--r-- | contributors/devel/development.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/contributors/devel/development.md b/contributors/devel/development.md index 5c8bb6d4..c5d3cb35 100644 --- a/contributors/devel/development.md +++ b/contributors/devel/development.md @@ -260,6 +260,11 @@ cd $working_dir/kubernetes make ``` +To remove the limit on the number of errors the Go compiler reports (default limit is 10 errors): +```sh +make GOGCFLAGS="-e" +``` + To build with optimizations disabled for enabling use of source debug tools: ```sh |
