From fa6622aa339960d0fe9ead5825f3e5e5a97acd43 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Fri, 7 Jun 2019 18:21:54 +0800 Subject: [PATCH] Kconfig: change default toolchain prefix for esp32s2beta to "esp32s2" --- Kconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kconfig b/Kconfig index eb1ddb8216..3230ed9bc8 100644 --- a/Kconfig +++ b/Kconfig @@ -43,7 +43,7 @@ mainmenu "Espressif IoT Development Framework Configuration" config SDK_TOOLPREFIX string "Compiler toolchain path/prefix" default "xtensa-esp32-elf-" if IDF_TARGET_ESP32 - default "xtensa-lx7-elf-" if IDF_TARGET_ESP32S2BETA + default "xtensa-esp32s2-elf-" if IDF_TARGET_ESP32S2BETA 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.