2016-08-17 15:08:22 +00:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
|
|
|
# see kconfig/kconfig-language.txt.
|
|
|
|
#
|
2016-08-19 06:30:39 +00:00
|
|
|
mainmenu "Espressif IoT Development Framework Configuration"
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
menu "SDK tool configuration"
|
|
|
|
config TOOLPREFIX
|
2016-09-28 05:24:58 +00:00
|
|
|
string "Compiler toolchain path/prefix"
|
|
|
|
default "xtensa-esp32-elf-"
|
|
|
|
help
|
|
|
|
The prefix/path that is used to call the toolchain. The default setting assumes
|
|
|
|
a crosstool-ng gcc setup that is in your PATH.
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
config PYTHON
|
|
|
|
string "Python 2 interpreter"
|
2016-09-28 05:24:58 +00:00
|
|
|
default "python"
|
|
|
|
help
|
|
|
|
The executable name/path that is used to run python. On some systems Python 2.x
|
|
|
|
may need to be invoked as python2.
|
2017-09-05 06:10:00 +00:00
|
|
|
|
|
|
|
config MAKE_WARN_UNDEFINED_VARIABLES
|
|
|
|
bool "'make' warns on undefined variables"
|
|
|
|
default "y"
|
|
|
|
help
|
|
|
|
Adds --warn-undefined-variables to MAKEFLAGS. This causes make to
|
|
|
|
print a warning any time an undefined variable is referenced.
|
|
|
|
|
|
|
|
This option helps find places where a variable reference is misspelled
|
|
|
|
or otherwise missing, but it can be unwanted if you have Makefiles which
|
|
|
|
depend on undefined variables expanding to an empty string.
|
|
|
|
|
|
|
|
endmenu # SDK tool configuration
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
source "$COMPONENT_KCONFIGS_PROJBUILD"
|
|
|
|
|
2018-06-13 08:09:05 +00:00
|
|
|
source "$IDF_PATH/Kconfig.compiler"
|
2017-06-19 01:25:45 +00:00
|
|
|
|
2016-08-17 15:08:22 +00:00
|
|
|
menu "Component config"
|
|
|
|
source "$COMPONENT_KCONFIGS"
|
|
|
|
endmenu
|