Andreas Enge <andr...@enge.fr> skribis: > I did a "make distclean", "./bootstrap", "./configure" and "make" on my mips
‘make’ is usually enough. > machine. It fails with the following message: > CXX nix/libstore/libstore_a-build.o > nix/libstore/build.cc: In member function ‘void > nix::DerivationGoal::startBuilder()’: > nix/libstore/build.cc:1808:91: error: ‘DEFAULT_CHROOT_DIRS’ was not declared > in this scope > PathSet dirs = > tokenizeString<StringSet>(settings.get("build-chroot-dirs", > string(DEFAULT_CHROOT_DIRS))); Could you run “make V=1”? Normally DEFAULT_CHROOT_DIRS is defined from the command line (see ‘libstore_a_CPPFLAGS’.) > nix/libstore/build.cc: In member function ‘void nix::Worker::waitForInput()’: > nix/libstore/build.cc:3324:74: warning: comparison between signed and > unsigned integer expressions [-Wsign-compare] > if (!waitingForAWhile.empty() && lastWokenUp + settings.pollInterval <= > after) { > ^ Weird, I don’t have it on x86_64 with GCC 5.1.0 -Wall but ‘time_t’ is indeed signed on all platforms (according to <bits/typesizes.h>) and ‘pollInterval’ is unsigned. Thanks, Ludo’.