summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index dd26906..b40dafb 100755
--- a/configure.py
+++ b/configure.py
@@ -189,13 +189,13 @@ n.newline()
if platform == 'windows':
n.rule('cxx',
command='$cxx /showIncludes $cflags -c $in /Fo$out',
- depfile='$out.d',
description='CXX $out',
deps='msvc')
else:
n.rule('cxx',
command='$cxx -MMD -MT $out -MF $out.d $cflags -c $in -o $out',
depfile='$out.d',
+ deps='gcc',
description='CXX $out')
n.newline()