summaryrefslogtreecommitdiff
path: root/readme.md
diff options
context:
space:
mode:
authorcbbrowne <cbbrowne@cbbrowne.tor.int-afilias.info>2016-11-16 17:05:11 -0500
committercbbrowne <cbbrowne@cbbrowne.tor.int-afilias.info>2016-11-16 17:05:11 -0500
commit5b88e7ab9a59dbbc5df6ffa4639befebb9fb115e (patch)
tree3676cd8ed034158c1d615d62cca3bf2631a71e96 /readme.md
parentc609edc36233ef0dc87d158fb8e8da989e74cae2 (diff)
parent9f1b27c5bad5ba36afaa32f986fd662053215d8b (diff)
Merge branch 'master' of https://github.com/jackhumbert/qmk_firmware
Diffstat (limited to 'readme.md')
-rw-r--r--readme.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/readme.md b/readme.md
index d5a259ccb8..8615b48d55 100644
--- a/readme.md
+++ b/readme.md
@@ -241,6 +241,7 @@ You can also add extra options at the end of the make command line, after the ta
* `make COLOR=false` - turns off color output
* `make SILENT=true` - turns off output besides errors/warnings
* `make VERBOSE=true` - outputs all of the gcc stuff (not interesting, unless you need to debug)
+* `make EXTRAFLAGS=-E` - Preprocess the code without doing any compiling (useful if you are trying to debug #define commands)
The make command itself also has some additional options, type `make --help` for more information. The most useful is probably `-jx`, which specifies that you want to compile using more than one CPU, the `x` represents the number of CPUs that you want to use. Setting that can greatly reduce the compile times, especially if you are compiling many keyboards/keymaps. I usually set it to one less than the number of CPUs that I have, so that I have some left for doing other things while it's compiling. Note that not all operating systems and make versions supports that option.