index
:
Ninja.git
master
release
[no description]
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
Commit message (
Expand
)
Author
Age
Files
Lines
*
generalize the pattern of hash_map<const char*, ...>, use in BuildLog
Evan Martin
2011-09-12
5
-32/+42
*
use StringPiece for makefile deps
Evan Martin
2011-09-12
5
-12/+77
*
Split ninja_test.cc into state_test.cc and disk_interface_test.cc
Thiago Farina
2011-09-11
3
-141/+140
*
Merge pull request #103 from tfarina/struct
Evan Martin
2011-09-11
1
-1/+1
|
\
|
*
This is C++, there is no need to write 'struct' before the type when declarin...
Thiago Farina
2011-09-10
1
-1/+1
*
|
change main hash to char*; use pointers into files
Evan Martin
2011-09-10
2
-3/+26
*
|
optimize IsIdentChar
Evan Martin
2011-09-09
1
-5/+25
*
|
fix "ignored return value of write" harder
Evan Martin
2011-09-09
1
-2/+4
*
|
verify -k param is numeric
Evan Martin
2011-09-09
2
-4/+10
*
|
minor cleanups
Evan Martin
2011-09-09
1
-2/+4
*
|
don't mark phony edges dirty if none of their inputs are dirty
Evan Martin
2011-09-09
2
-8/+23
|
/
*
Merge pull request #101 from tfarina/build-config-reference
Evan Martin
2011-09-09
2
-5/+5
|
\
|
*
Make Cleaner::config_ a reference-to-const instead of copying the value.
Thiago Farina
2011-09-09
2
-5/+5
*
|
Merge pull request #95 from qhuo/depfile-for-command-with-multiple-outputs
Evan Martin
2011-09-09
3
-22/+11
|
\
\
|
|
/
|
/
|
|
*
Move a passing test from Errors to MultipleOutputs
Qingning Huo
2011-09-06
1
-10/+11
|
*
Add depfile support to build command with multiple outputs (Fixes: #61)
Qingning Huo
2011-09-06
3
-14/+2
*
|
Move EvalString tests to eval_env_test.cc
Thiago Farina
2011-09-09
2
-73/+101
*
|
Merge pull request #98 from tfarina/fix-win-build
Evan Martin
2011-09-08
2
-28/+29
|
\
\
|
*
|
Fix windows build by moving mkdtemp() implementation from ninja_test.cc to di...
Thiago Farina
2011-09-08
2
-28/+29
*
|
|
Merge branch 'master' of github.com:martine/ninja
Evan Martin
2011-09-08
2
-102/+131
|
\
\
\
|
|
/
/
|
*
|
Merge pull request #96 from tfarina/disk-interface-test
Evan Martin
2011-09-07
2
-102/+131
|
|
\
\
|
|
*
|
Move DiskInterfaceTest into its own source file.
Thiago Farina
2011-09-07
2
-102/+131
|
|
|
/
*
|
|
fix redundant manifest rebuild
Evan Martin
2011-09-08
4
-20/+41
|
/
/
*
|
Merge pull request #91 from pcc/reload-manifest
Evan Martin
2011-09-06
2
-0/+30
|
\
\
|
|
/
|
/
|
|
*
Support for rebuilding and reloading manifest files
Peter Collingbourne
2011-09-03
2
-0/+30
*
|
Merge pull request #94 from qhuo/named-pipe
Evan Martin
2011-09-04
1
-2/+2
|
\
\
|
|
/
|
/
|
|
*
subprocess-win32.cc: change named pipe names to contain process ID and subpro...
Qingning Huo
2011-09-04
1
-2/+2
*
|
Factor out State struct from ninja_jumble.cc into its header/source files.
Thiago Farina
2011-09-03
12
-45/+38
|
/
*
Merge pull request #92 from pcc/fix-warning
Evan Martin
2011-09-03
1
-2/+2
|
\
|
*
Fix a Clang self-assign warning by casting result to void
Peter Collingbourne
2011-09-01
1
-2/+2
*
|
Implement default target statements
Peter Collingbourne
2011-08-31
6
-2/+111
|
/
*
Fix ninja compilation by including a missing disk_interface.h.
Thiago Farina
2011-08-25
1
-0/+1
*
Merge pull request #86 from tfarina/real-disk-interface
Evan Martin
2011-08-25
7
-78/+90
|
\
|
*
Move RealDiskInterface class to disk_interface.h.
Thiago Farina
2011-08-25
7
-78/+90
*
|
semantic change: allow reaching into parent directories in paths
Evan Martin
2011-08-24
6
-104/+76
|
/
*
Factor out DiskInterface class into its own source/header files.
Thiago Farina
2011-08-10
4
-59/+101
*
Fix trivial style issues with Cleaner class.
Thiago Farina
2011-08-09
1
-5/+3
*
don't track line/column until you encounter an error, then re-parse
Evan Martin
2011-07-26
2
-40/+31
*
don't leak the build_log file descriptor into subprocesses
Evan Martin
2011-06-30
1
-0/+17
*
clean: don't delete phony targets
Evan Martin
2011-06-30
1
-4/+7
*
Set stdout to line-buffered.
Qingning Huo
2011-06-28
1
-0/+2
*
Fix for win32 long command lines:
U-MATHLETE\John
2011-06-26
2
-6/+7
*
Fix for 'pipe has ended' errors on Win32 distributed builds
Evan Martin
2011-06-25
1
-0/+5
*
Add a test for the multiple outputs fix
Qingning Huo
2011-06-14
1
-1/+19
*
src/graph.cc: fix EdgeEnv::LookupVariable
Qingning Huo
2011-06-10
1
-1/+6
*
build_log_test.cc: add 3 #include for stat(2) on Linux
Qingning Huo
2011-06-10
1
-0/+6
*
remove +x bit from source
Evan Martin
2011-06-03
7
-0/+0
*
On Windows, ninja didn't create needed paths first
Philip Craig
2011-06-02
2
-4/+20
*
Merge branch 'master' of github.com:martine/ninja
Evan Martin
2011-05-31
6
-22/+28
|
\
|
*
mingw ninja_test links and passes. (as do linux and native VS2010)
Philip Craig
2011-05-29
2
-22/+10
[next]