18 lines
496 B
Plaintext
18 lines
496 B
Plaintext
|
# Copyright (c) 2023 Nordic Semiconductor ASA
|
||
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
||
|
config BOARD_NATIVE_SIM_32BIT
|
||
|
bool "Native simulation, 32-bit mode"
|
||
|
select BOARD_NATIVE_SIM
|
||
|
help
|
||
|
Will produce a console Linux process which can be executed natively
|
||
|
as a 32-bit executable.
|
||
|
|
||
|
config BOARD_NATIVE_SIM_64BIT
|
||
|
bool "Native simulation, 64-bit mode"
|
||
|
select BOARD_NATIVE_SIM
|
||
|
select 64BIT
|
||
|
help
|
||
|
Will produce a console Linux process which can be executed natively
|
||
|
as a 64-bit executable.
|