diff --git a/KERNEL.md b/KERNEL.md index 2f3cc77..8dba66d 100644 --- a/KERNEL.md +++ b/KERNEL.md @@ -97,7 +97,7 @@ This process makes a "__.config__" file in the kernel source directory, this fil ## COMPILATION Can take minutes to hours. -__NOTE__: The __-j__ flag, where ____ is the number of cores +1, __IS OPTIONAL__ and only goes if you have a processor with multiple cores. If you install __ccache__ (__THIS IS OPTIONAL__) you can speed up subsequent compilations by including __CC="ccache gcc"__ after the __-j__ flag. +__NOTE__: The __-j\__ flag, where __\__ is the number of cores +1, __IS OPTIONAL__ and only goes if you have a processor with multiple cores. If you install __ccache__ (__THIS IS OPTIONAL__) you can speed up subsequent compilations by including __CC="ccache gcc"__ after the __-j\__ flag. `make -j ` And with ccache   `make -j CC="ccache gcc" `