We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd229ba commit bd0acdcCopy full SHA for bd0acdc
tools/toolchains/__init__.py
@@ -197,7 +197,7 @@ def check_toolchain_path(function):
197
function -- the function to decorate
198
"""
199
def perform_check(self, *args, **kwargs):
200
- if not exists(self.toolchain_path):
+ if not exists(self.toolchain_path) and not exists(self.toolchain_path+'.exe'):
201
error_string = 'Could not find executable for %s.\n Currently ' \
202
'set search path: %s'% (self.name, self.toolchain_path)
203
raise Exception(error_string)
0 commit comments