From 896d6752485e3c9c9aa689c4a7fa63371c573fe1 Mon Sep 17 00:00:00 2001 From: Ivan Grokhotkov Date: Tue, 9 Jul 2019 13:00:16 +0200 Subject: [PATCH] idf_tools.py: add another platform string to handle Windows x86 --- tools/idf_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index c005ecd6f4..7cdd182366 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -96,6 +96,7 @@ PLATFORM_FROM_NAME = { # Windows PLATFORM_WIN32: PLATFORM_WIN32, 'Windows-i686': PLATFORM_WIN32, + 'Windows-x86': PLATFORM_WIN32, PLATFORM_WIN64: PLATFORM_WIN64, 'Windows-x86_64': PLATFORM_WIN64, 'Windows-AMD64': PLATFORM_WIN64,