aboutsummaryrefslogtreecommitdiff
path: root/nix/nix-daemon/guix-daemon.cc
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2012-12-15 15:28:50 +0100
committerLudovic Courtès <ludo@gnu.org>2012-12-15 15:28:50 +0100
commita784c3077e7cdae5d8492aa540b86b8d32c9a696 (patch)
tree9a09f9a1b2f032b09f2314cf12f7965877290eaf /nix/nix-daemon/guix-daemon.cc
parent7f131cf3681afe62c84db66e48430de9e54e7d7d (diff)
parent07ab4bf1fc590642307f18b4d1b8687dde3d664b (diff)
downloadpatches-a784c3077e7cdae5d8492aa540b86b8d32c9a696.tar
patches-a784c3077e7cdae5d8492aa540b86b8d32c9a696.tar.gz
Merge branch 'master' into core-updates
Conflicts: distro/packages/multiprecision.scm
Diffstat (limited to 'nix/nix-daemon/guix-daemon.cc')
-rw-r--r--nix/nix-daemon/guix-daemon.cc11
1 files changed, 11 insertions, 0 deletions
diff --git a/nix/nix-daemon/guix-daemon.cc b/nix/nix-daemon/guix-daemon.cc
index 6bbea52196..79c719399e 100644
--- a/nix/nix-daemon/guix-daemon.cc
+++ b/nix/nix-daemon/guix-daemon.cc
@@ -21,6 +21,7 @@
#include <types.hh>
#include "shared.hh"
#include <globals.hh>
+#include <util.hh>
#include <stdlib.h>
#include <argp.h>
@@ -56,6 +57,7 @@ builds derivations on behalf of its clients.";
#define GUIX_OPT_DISABLE_LOG_COMPRESSION 6
#define GUIX_OPT_DISABLE_STORE_OPTIMIZATION 7
#define GUIX_OPT_IMPERSONATE_LINUX_26 8
+#define GUIX_OPT_DEBUG 9
static const struct argp_option options[] =
{
@@ -88,6 +90,8 @@ static const struct argp_option options[] =
" (this option has no effect in this configuration)"
#endif
},
+ { "debug", GUIX_OPT_DEBUG, 0, 0,
+ "Produce debugging output" },
{ 0, 0, 0, 0, 0 }
};
@@ -118,6 +122,9 @@ parse_opt (int key, char *arg, struct argp_state *state)
case GUIX_OPT_LOSE_LOGS:
settings.keepLog = false;
break;
+ case GUIX_OPT_DEBUG:
+ verbosity = lvlDebug;
+ break;
case 'C':
settings.buildCores = atoi (arg);
break;
@@ -152,6 +159,10 @@ main (int argc, char *argv[])
settings.processEnvironment ();
+ /* FIXME: Disable substitutes until we have something that works. */
+ settings.useSubstitutes = false;
+ settings.substituters.clear ();
+
argp_parse (&argp, argc, argv, 0, 0, 0);
argvSaved = argv;