summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xdeheader2
1 files changed, 1 insertions, 1 deletions
diff --git a/deheader b/deheader
index 05d93fe..a771e78 100755
--- a/deheader
+++ b/deheader
@@ -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: