:orphan: .. title:: CONFIG_BOARD_NATIVE_POSIX_64BIT .. kconfig:: CONFIG_BOARD_NATIVE_POSIX_64BIT CONFIG_BOARD_NATIVE_POSIX_64BIT ############################### *Native POSIX for 64-bit host* Type: ``bool`` Help ==== .. code-block:: none Will produce a console Linux process which can be executed natively as a 64-bit executable. It provides some minimal needed models: An interrupt controller, timer (system tick), and redirects kernel prints to stdout. Direct dependencies =================== \ :kconfig:`SOC_POSIX ` && \ :ref:` ` *(Includes any dependencies from ifs and menus.)* Symbols selected by this symbol =============================== - \ :kconfig:`BOARD_NATIVE_POSIX ` - \ :kconfig:`64BIT ` Kconfig definition ================== At ``/posix/native_posix/Kconfig.board:14`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:37`` → ``/Kconfig:29`` Menu path: (Top) → Board Selection .. code-block:: kconfig config BOARD_NATIVE_POSIX_64BIT bool "Native POSIX for 64-bit host" select BOARD_NATIVE_POSIX select 64BIT depends on SOC_POSIX && help Will produce a console Linux process which can be executed natively as a 64-bit executable. It provides some minimal needed models: An interrupt controller, timer (system tick), and redirects kernel prints to stdout. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*