瀏覽代碼

Merge pull request #239 from NanXiao/patch-1

Update how_kernel_compiled.md
0xAX 9 年之前
父節點
當前提交
33a4a4f284
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Misc/how_kernel_compiled.md

+ 1 - 1
Misc/how_kernel_compiled.md

@@ -166,7 +166,7 @@ HOSTCFLAGS   = -Wall -Wmissing-prototypes -Wstrict-prototypes -O2 -fomit-frame-p
 HOSTCXXFLAGS = -O2
 HOSTCXXFLAGS = -O2
 ```
 ```
 
 
-Next we get to the `CC` variable that represents compiler too, so why do we need the `HOST*` variables? `CC` is the target compiler that will be used during kernel compilation, but `HOSTCC` will be used during compilation of the set of the `host` programs (we will see it soon). After this we can see the definition of `KBUILD_MODULES` and `KBUILD_BUILTIN` variables that are used to determine what to compile (kernel, modules or both):
+Next we get to the `CC` variable that represents compiler too, so why do we need the `HOST*` variables? `CC` is the target compiler that will be used during kernel compilation, but `HOSTCC` will be used during compilation of the set of the `host` programs (we will see it soon). After this we can see the definition of `KBUILD_MODULES` and `KBUILD_BUILTIN` variables that are used to determine what to compile (modules, kernel, or both):
 
 
 ```Makefile
 ```Makefile
 KBUILD_MODULES :=
 KBUILD_MODULES :=