:orphan: .. title:: CONFIG_BUILD_OUTPUT_STRIPPED .. kconfig:: CONFIG_BUILD_OUTPUT_STRIPPED CONFIG_BUILD_OUTPUT_STRIPPED ############################ *Build a stripped binary* Type: ``bool`` Help ==== .. code-block:: none Build a stripped binary zephyr/zephyr.strip in the build directory. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME. Defaults ======== - y - y Kconfig definitions =================== At ``/x86/ehl_crb/Kconfig.defconfig:10`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config BUILD_OUTPUT_STRIPPED bool default y depends on BOARD_EHL_CRB || BOARD_EHL_CRB_SBL ---- At ``/x86/up_squared/Kconfig.defconfig:11`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:22`` Menu path: (Top) .. code-block:: kconfig config BUILD_OUTPUT_STRIPPED bool default y depends on BOARD_UP_SQUARED ---- At ``Kconfig.zephyr:491`` Included via ``Kconfig:8`` Menu path: (Top) → Build and Link Features → Build Options .. code-block:: kconfig config BUILD_OUTPUT_STRIPPED bool "Build a stripped binary" help Build a stripped binary zephyr/zephyr.strip in the build directory. The name of this file can be customized with CONFIG_KERNEL_BIN_NAME. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*