]> git.baikalelectronics.ru Git - kernel.git/commit
kbuild: get rid of misleading $(AS) from documents
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Sat, 13 Jul 2019 02:45:58 +0000 (11:45 +0900)
committerMasahiro Yamada <yamada.masahiro@socionext.com>
Wed, 17 Jul 2019 13:37:51 +0000 (22:37 +0900)
commit68c2de6e9bfe3c72059a5b7b96518f55001dc339
tree032a6e8f7ae16e1debeac6be605bbdb30eeb0fd8
parent9809f0ea75a6d863b54ffa6d868ce1e533507366
kbuild: get rid of misleading $(AS) from documents

The assembler files in the kernel are *.S instead of *.s, so they must
be preprocessed. Since 'as' of GNU binutils is not able to preprocess,
we always use $(CC) as an assembler driver.

$(AS) is almost unused in Kbuild. As of v5.2, there is just one place
that directly invokes $(AS).

  $ git grep -e '$(AS)' -e '${AS}' -e '$AS' -e '$(AS:' -e '${AS:' -- :^Documentation
  drivers/net/wan/Makefile:  AS68K = $(AS)

The documentation about *_AFLAGS* sounds like the flags were passed
to $(AS). This is somewhat misleading.

Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
Documentation/kbuild/kbuild.rst
Documentation/kbuild/makefiles.rst