summaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorEvan Martin <martine@danga.com>2013-04-10 19:51:04 (GMT)
committerEvan Martin <martine@danga.com>2013-04-10 19:51:04 (GMT)
commit461fec29aa6dce66fdf431256744f67b5e9ba6b9 (patch)
tree0d74b70da0b6c8c179ec8de3a87c51f8a6667bad /configure.py
parent53339104c51139f7ed5f1265bae3062d157f5311 (diff)
downloadNinja-461fec29aa6dce66fdf431256744f67b5e9ba6b9.zip
Ninja-461fec29aa6dce66fdf431256744f67b5e9ba6b9.tar.gz
Ninja-461fec29aa6dce66fdf431256744f67b5e9ba6b9.tar.bz2
build ninja itself in deps mode
Hopefully will help flush out bugs.
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()