Add tip for removing compiler error limit

This commit is contained in:
Michael Taufen 2017-05-19 07:00:58 -07:00
parent 8f34704596
commit a70fc8bbd7
1 changed files with 5 additions and 0 deletions

View File

@ -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