diff options
-rwxr-xr-x | deheader | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1417,7 +1417,7 @@ def testcompile(source, compiler, std, defines, maker, msg="", verbosity=0, show if std == "": explain = "succeeded" else: - command = "{0} {1} {2} -o {3} {4}".format(compiler, defines, maker, tmpname, source) + command = "{0} {1} {2} {3} -o {4} {5}".format(compiler, "-std=c++98", defines, maker, tmpname, source) (status, output) = getstatusoutput(command) end = time.time() if status: |