]> granicus.if.org Git - esp-idf/blob - Kconfig
udp_multicast example: Fix memory leak from getaddrinfo() calls
[esp-idf] / Kconfig
1 #
2 # For a description of the syntax of this configuration file,
3 # see kconfig/kconfig-language.txt.
4 #
5 mainmenu "Espressif IoT Development Framework Configuration"
6
7
8 menu "SDK tool configuration"
9 config TOOLPREFIX
10     string "Compiler toolchain path/prefix"
11     default "xtensa-esp32-elf-"
12     help
13         The prefix/path that is used to call the toolchain. The default setting assumes
14         a crosstool-ng gcc setup that is in your PATH.
15
16 config PYTHON
17     string "Python 2 interpreter"
18     default "python"
19     help
20         The executable name/path that is used to run python. On some systems Python 2.x
21         may need to be invoked as python2.
22
23 config MAKE_WARN_UNDEFINED_VARIABLES
24     bool "'make' warns on undefined variables"
25     default "y"
26     help
27         Adds --warn-undefined-variables to MAKEFLAGS. This causes make to
28         print a warning any time an undefined variable is referenced.
29
30         This option helps find places where a variable reference is misspelled
31         or otherwise missing, but it can be unwanted if you have Makefiles which
32         depend on undefined variables expanding to an empty string.
33
34 endmenu  # SDK tool configuration
35
36 source "$COMPONENT_KCONFIGS_PROJBUILD"
37
38 source "$IDF_PATH/Kconfig.compiler"
39
40 menu "Component config"
41 source "$COMPONENT_KCONFIGS"
42 endmenu