From bf6cee4fdba81c09d42afbe219239c93245d25bf Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Thu, 17 Aug 2017 22:11:48 +0300 Subject: [PATCH 1/3] Declare GDB client --- builder/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/builder/main.py b/builder/main.py index 6d8fa03..b278a1d 100644 --- a/builder/main.py +++ b/builder/main.py @@ -34,6 +34,7 @@ env.Replace( AS="xtensa-esp32-elf-as", CC="xtensa-esp32-elf-gcc", CXX="xtensa-esp32-elf-g++", + GDB="xtensa-esp32-elf-gdb", OBJCOPY=join( platform.get_package_dir("tool-esptoolpy") or "", "esptool.py"), RANLIB="xtensa-esp32-elf-ranlib", From 89432f3c0370a0b44b174724a03bb043d8a3e53e Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 22 Aug 2017 16:01:28 +0300 Subject: [PATCH 2/3] Do not create an index to the symbols with ar command --- builder/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/main.py b/builder/main.py index b278a1d..2d32193 100644 --- a/builder/main.py +++ b/builder/main.py @@ -40,7 +40,7 @@ env.Replace( RANLIB="xtensa-esp32-elf-ranlib", SIZETOOL="xtensa-esp32-elf-size", - ARFLAGS=["rcs"], + ARFLAGS=["rc"], ASFLAGS=["-x", "assembler-with-cpp"], From a097a0c32657ecc565b3253f2ad01386c3b755bf Mon Sep 17 00:00:00 2001 From: Valerii Koval Date: Tue, 22 Aug 2017 16:44:51 +0300 Subject: [PATCH 3/3] Bump version to 0.9.1 --- platform.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform.json b/platform.json index a285a93..d59449f 100644 --- a/platform.json +++ b/platform.json @@ -12,7 +12,7 @@ "type": "git", "url": "https://github.com/platformio/platform-espressif32.git" }, - "version": "0.9.0", + "version": "0.9.1", "packageRepositories": [ "https://dl.bintray.com/platformio/dl-packages/manifest.json", "http://dl.platformio.org/packages/manifest.json",