Merge pull request #121 from danw/implicit_outputs

Include implicit outputs in the DepNode graph
diff --git a/main.cc b/main.cc
index a4df3c0..2e45810 100644
--- a/main.cc
+++ b/main.cc
@@ -44,6 +44,11 @@
 #include "timeutil.h"
 #include "var.h"
 
+// We know that there are leaks in Kati. Turn off LeakSanitizer by default.
+extern "C" const char* __asan_default_options() {
+  return "detect_leaks=0";
+}
+
 static void Init() {
   InitSymtab();
   InitFuncTable();