diff options
author | Evan Martin <martine@danga.com> | 2011-03-05 21:19:37 (GMT) |
---|---|---|
committer | Evan Martin <martine@danga.com> | 2011-03-05 21:20:57 (GMT) |
commit | 885ef827f0b6cf047cad8c8785bdc65838bfce4f (patch) | |
tree | a76dd18d7e9893421fab2d1b25821518e65ff12e | |
parent | f375fe451611f5eda01c8f157cb55db3f3802a15 (diff) | |
download | Ninja-885ef827f0b6cf047cad8c8785bdc65838bfce4f.zip Ninja-885ef827f0b6cf047cad8c8785bdc65838bfce4f.tar.gz Ninja-885ef827f0b6cf047cad8c8785bdc65838bfce4f.tar.bz2 |
drop use of ar's T flag
This produces smaller archives, which is important for large projects
to not clobber your disk cache. But we are small (the resulting .a is
~3.5mb for debug) and it's not supported on older operating systems.
-rw-r--r-- | build.ninja | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build.ninja b/build.ninja index a444264..803229c 100644 --- a/build.ninja +++ b/build.ninja @@ -24,7 +24,7 @@ rule cxx description = CC $out rule ar - command = ar crsT $out $in + command = ar crs $out $in description = AR $out rule link |