1# Copyright (c) 2023 Yonatan Schachter
2# SPDX-License-Identifier: Apache-2.0
3
4menuconfig BINDESC_DEFINE_HOST_INFO
5	bool "Host info binary descriptors"
6	help
7	  Add the host info binary descriptors
8
9if BINDESC_DEFINE_HOST_INFO
10
11config BINDESC_HOST_NAME
12	bool "Host name"
13	help
14	  The name of the host that the image was compiled on
15
16config BINDESC_C_COMPILER_NAME
17	bool "C compiler name"
18	help
19	  The C compiler name, such as "GNU"
20
21config BINDESC_C_COMPILER_VERSION
22	bool "C compiler version"
23	help
24	  The C compiler version, such as "12.3.0"
25
26config BINDESC_CXX_COMPILER_NAME
27	bool "C++ compiler name"
28	help
29	  The C++ compiler name, such as "GNU"
30
31config BINDESC_CXX_COMPILER_VERSION
32	bool "C++ compiler version"
33	help
34	  The C++ compiler version, such as "12.3.0"
35
36endif # BINDESC_DEFINE_HOST_INFO
37