Fix to consolidate WinCE versions in the compiler versions list.

This commit is contained in:
Shawn Hoover 2015-09-09 12:30:23 -04:00
parent 48e48babb4
commit a8480cc2ff
1 changed files with 3 additions and 3 deletions

View File

@ -283,12 +283,12 @@ def gather_wince_supported_platforms():
path,device = os.path.split(path)
if not device:
path,device = os.path.split(path)
platforms = []
for arch,compiler in all_wince_platforms:
platforms = []
if os.path.isdir(os.path.join(path, device, 'Lib', arch)):
platforms.append((arch, compiler, os.path.join(path, device, 'Include', arch), os.path.join(path, device, 'Lib', arch)))
if platforms:
supported_wince_platforms.append((device, platforms))
if platforms:
supported_wince_platforms.append((device, platforms))
return supported_wince_platforms
def gather_msvc_detected_versions():