diff options
Diffstat (limited to 'scripts/TestUtil.py')
-rwxr-xr-x | scripts/TestUtil.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/TestUtil.py b/scripts/TestUtil.py index ed95b5edb64..9012e29b0fc 100755 --- a/scripts/TestUtil.py +++ b/scripts/TestUtil.py @@ -143,8 +143,10 @@ def getCppCompiler(): elif l.find("Version 18") != -1: compiler = "VC120" else: - print("Cannot detect C++ compiler") - sys.exit(1) + # + # Cannot detect C++ compiler use default + # + compiler = "VC120" return compiler def isMINGW(): |