# kbuild supports saving output files in a separate directory.
# To locate output files in a separate directory two syntaxes are supported.
# In both cases the working directory must be the root of the kernel src.
# 1) O=
# Use "make O=dir/to/store/output/files/"   或者直接用绝对路径
#
# 2) Set KBUILD_OUTPUT
# Set the environment variable KBUILD_OUTPUT to point to the directory
# where the output files shall be placed.
# export KBUILD_OUTPUT=dir/to/store/output/files/
# make
#
# The O= assignment takes precedence over the KBUILD_OUTPUT environment
# variable.

相关文章:

  • 2022-12-23
  • 2021-04-10
  • 2021-11-11
  • 2022-12-23
  • 2021-12-23
  • 2021-12-23
  • 2021-12-23
猜你喜欢
  • 2021-10-04
  • 2022-12-23
  • 2021-11-13
  • 2021-10-04
  • 2021-11-23
  • 2021-09-21
  • 2021-12-27
相关资源
相似解决方案