1# Copyright (c) 2024 Meta Platforms
2# SPDX-License-Identifier: Apache-2.0
3
4config SYMTAB
5	bool "Generate symbol table"
6	help
7	  Generate the symbol table with the offset and name of every
8	  function.
9	  The symbol table can be accessed by including the
10	  <zephyr/debug/symtab.h> header.
11
12	  Choose N if you have no idea what is this.
13
14if SYMTAB
15
16config SYMTAB_SHELL
17	bool "Symbol table shell commands"
18	depends on SHELL
19	help
20	  Shell commands to access the symbol table.
21
22endif # SYMTAB
23