From 630b77094f49d9a3fca2255de89f9bd1627bf6d1 Mon Sep 17 00:00:00 2001 From: Marek Fiala Date: Thu, 24 Aug 2023 16:18:13 +0200 Subject: [PATCH] feat(tools): Added Windows-ARM64 support Closes https://github.com/espressif/esp-idf/issues/10345 --- tools/idf_tools.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/idf_tools.py b/tools/idf_tools.py index 008730279d..c01512f44a 100755 --- a/tools/idf_tools.py +++ b/tools/idf_tools.py @@ -125,6 +125,7 @@ class Platforms: 'Windows-x86_64': PLATFORM_WIN64, 'Windows-AMD64': PLATFORM_WIN64, 'x86_64-w64-mingw32': PLATFORM_WIN64, + 'Windows-ARM64': PLATFORM_WIN64, # macOS PLATFORM_MACOS: PLATFORM_MACOS, 'osx': PLATFORM_MACOS,