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 40fe10b commit 53c6e73Copy full SHA for 53c6e73
bsp/simulator/rtconfig.py
@@ -32,13 +32,13 @@
32
vc_versions = SCons.Tool.MSCommon.vc.get_installed_vcs()
33
if not vc_versions:
34
print("No vc version!")
35
- exit()
+ exit(1)
36
else:
37
vc_version = vc_versions[0]
38
EXEC_PATH = SCons.Tool.MSCommon.vc.find_vc_pdir(vc_version)
39
if not EXEC_PATH:
40
print('Installed VC %s failure!' % vc_version)
41
42
43
print('Successfully installed VC %s, path:%s' % (vc_version, EXEC_PATH))
44
except:
0 commit comments