[all] Build a single executable

This commit is contained in:
Joe Thornber
2014-08-27 14:01:31 +01:00
parent c1e0799367
commit 6f8b7e2914
48 changed files with 418 additions and 496 deletions

View File

@@ -14,6 +14,7 @@
#include "base/error_state.h"
#include "base/nested_output.h"
#include "caching/commands.h"
#include "caching/metadata.h"
#include "persistent-data/block.h"
#include "persistent-data/file_utils.h"
@@ -322,7 +323,7 @@ namespace {
//----------------------------------------------------------------
int main(int argc, char **argv)
int cache_check_main(int argc, char **argv)
{
int c;
flags fs;
@@ -384,4 +385,6 @@ int main(int argc, char **argv)
return check_with_exception_handling(argv[optind], fs);
}
base::command caching::cache_check_cmd("cache_check", cache_check_main);
//----------------------------------------------------------------