summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--contributors/devel/development.md5
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