Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nix
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0b9e795e5b27
Choose a base ref
...
head repository: NixOS/nix
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c1df9ab19fbb
Choose a head ref
  • 4 commits
  • 9 files changed
  • 1 contributor

Commits on Oct 30, 2019

  1. Make --enable-gc the default

    edolstra committed Oct 30, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    68ee506 View commit details

Commits on Nov 4, 2019

  1. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    ae26dd8 View commit details
  2. Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    37f0a6f View commit details
  3. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c1df9ab View commit details
Showing with 108 additions and 31 deletions.
  1. +10 −10 Makefile.config.in
  2. +14 −2 configure.ac
  3. +0 −2 mk/lib.mk
  4. +6 −10 mk/patterns.mk
  5. +1 −3 release-common.nix
  6. +0 −2 release.nix
  7. +8 −1 src/libstore/build.cc
  8. +2 −1 tests/local.mk
  9. +67 −0 tests/recursive.sh
20 changes: 10 additions & 10 deletions Makefile.config.in
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
AR = @AR@
BDW_GC_LIBS = @BDW_GC_LIBS@
BOOST_LDFLAGS = @BOOST_LDFLAGS@
BUILD_SHARED_LIBS = @BUILD_SHARED_LIBS@
CC = @CC@
CFLAGS = @CFLAGS@
CXX = @CXX@
CXXFLAGS = @CXXFLAGS@
LDFLAGS = @LDFLAGS@
EDITLINE_LIBS = @EDITLINE_LIBS@
ENABLE_S3 = @ENABLE_S3@
HAVE_SODIUM = @HAVE_SODIUM@
HAVE_SECCOMP = @HAVE_SECCOMP@
BOOST_LDFLAGS = @BOOST_LDFLAGS@
HAVE_SODIUM = @HAVE_SODIUM@
LDFLAGS = @LDFLAGS@
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
LIBCURL_LIBS = @LIBCURL_LIBS@
LIBLZMA_LIBS = @LIBLZMA_LIBS@
NIX_CCACHE = @NIX_CCACHE@
OPENSSL_LIBS = @OPENSSL_LIBS@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
SODIUM_LIBS = @SODIUM_LIBS@
LIBLZMA_LIBS = @LIBLZMA_LIBS@
SQLITE3_LIBS = @SQLITE3_LIBS@
LIBBROTLI_LIBS = @LIBBROTLI_LIBS@
EDITLINE_LIBS = @EDITLINE_LIBS@
bash = @bash@
bindir = @bindir@
lsof = @lsof@
datadir = @datadir@
datarootdir = @datarootdir@
doc_generate = @doc_generate@
docdir = @docdir@
exec_prefix = @exec_prefix@
includedir = @includedir@
libdir = @libdir@
libexecdir = @libexecdir@
localstatedir = @localstatedir@
lsof = @lsof@
mandir = @mandir@
nix_build = @nix_build@
pkglibdir = $(libdir)/$(PACKAGE_NAME)
prefix = @prefix@
sandbox_shell = @sandbox_shell@
storedir = @storedir@
sysconfdir = @sysconfdir@
doc_generate = @doc_generate@
xmllint = @xmllint@
xsltproc = @xsltproc@
16 changes: 14 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -255,8 +255,8 @@ fi

# Whether to use the Boehm garbage collector.
AC_ARG_ENABLE(gc, AC_HELP_STRING([--enable-gc],
[enable garbage collection in the Nix expression evaluator (requires Boehm GC) [default=no]]),
gc=$enableval, gc=no)
[enable garbage collection in the Nix expression evaluator (requires Boehm GC) [default=yes]]),
gc=$enableval, gc=yes)
if test "$gc" = yes; then
PKG_CHECK_MODULES([BDW_GC], [bdw-gc])
CXXFLAGS="$BDW_GC_CFLAGS $CXXFLAGS"
@@ -312,6 +312,18 @@ else
fi


# Whether to use Nix at build time to cache compilations.
AC_ARG_ENABLE(nix-ccache, AC_HELP_STRING([--enable-nix-ccache],
[Whether to use Nix at build time to cache/distribute C++ compilations [default=no]]),
nix_ccache=$enableval, nix_ccache=no)
if test "$nix_ccache" = yes; then
NEED_PROG(nix_build, nix-build)
AC_SUBST(NIX_CCACHE, 1)
else
AC_SUBST(NIX_CCACHE, 0)
fi


# Expand all variables in config.status.
test "$prefix" = NONE && prefix=$ac_default_prefix
test "$exec_prefix" = NONE && exec_prefix='${prefix}'
2 changes: 0 additions & 2 deletions mk/lib.mk
Original file line number Diff line number Diff line change
@@ -153,8 +153,6 @@ endif
@echo ""
@echo " BUILD_SHARED_LIBS ($(BUILD_SHARED_LIBS)): Whether to build shared libraries"
@echo " BUILD_DEBUG ($(BUILD_DEBUG)): Whether to include debug symbols"
@echo " CC ($(CC)): C compiler to be used"
@echo " CFLAGS: Flags for the C compiler"
@echo " CXX ($(CXX)): C++ compiler to be used"
@echo " CXXFLAGS: Flags for the C++ compiler"
@$(print-var-help)
16 changes: 6 additions & 10 deletions mk/patterns.mk
Original file line number Diff line number Diff line change
@@ -2,16 +2,12 @@ CXX_PATH = $(shell sh -c 'type -p $(CXX)')

$(buildprefix)%.o: %.cc
@mkdir -p "$(dir $@)"
$(trace-cpp) $(CXX) -o $@.ii -E $< $(GLOBAL_CXXFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(CXXFLAGS) $($@_CXXFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP
$(trace-cxx) nix build -L --option experimental-features nix-command -o $@.link '(derivation { name = "cc"; system = "x86_64-linux"; builder = "/bin/sh"; args = [ "-c" "$${builtins.storePath $(CXX_PATH)} -std=c++17 -o $$out -c $${$@.ii} -g -Wall -fPIC -g -O3" ]; })'
ifeq ($(NIX_CCACHE), 1)
$(trace-cpp) $(CXX) -o $@.ii -E $< $(GLOBAL_CXXFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(CXXFLAGS) $($@_CXXFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP -MT $@
$(trace-cxx) $(nix_build) -o $@.link -E '(derivation { name = "cc"; system = "x86_64-linux"; builder = "/bin/sh"; args = [ "-c" "$${builtins.storePath $(CXX_PATH)} -std=c++17 -o $$out -c $${$@.ii} -g -Wall -fPIC -g -O3" ]; })'
@rm -f $@
@cp $@.link $@
@rm -f $@.ii $@.link

$(buildprefix)%.o: %.cpp
@mkdir -p "$(dir $@)"
$(trace-cxx) $(CXX) -o $@ -c $< $(GLOBAL_CXXFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(CXXFLAGS) $($@_CXXFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP

$(buildprefix)%.o: %.c
@mkdir -p "$(dir $@)"
$(trace-cc) $(CC) -o $@ -c $< $(GLOBAL_CFLAGS) $(CFLAGS) $($@_CFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP
else
$(trace-cxx) $(CXX) -o $@ -c $< $(GLOBAL_CXXFLAGS) $(GLOBAL_CXXFLAGS_PCH) $(CXXFLAGS) $($@_CXXFLAGS) -MMD -MF $(call filename-to-dep, $@) -MP -MT $@
endif
4 changes: 1 addition & 3 deletions release-common.nix
Original file line number Diff line number Diff line change
@@ -30,9 +30,7 @@ rec {
});

configureFlags =
[
"--enable-gc"
] ++ lib.optionals stdenv.isLinux [
lib.optionals stdenv.isLinux [
"--with-sandbox-shell=${sh}/bin/busybox"
];

2 changes: 0 additions & 2 deletions release.nix
Original file line number Diff line number Diff line change
@@ -25,8 +25,6 @@ let

buildInputs = tarballDeps ++ buildDeps;

configureFlags = "--enable-gc";

postUnpack = ''
(cd $sourceRoot && find . -type f) | cut -c3- > $sourceRoot/.dist-files
cat $sourceRoot/.dist-files
9 changes: 8 additions & 1 deletion src/libstore/build.cc
Original file line number Diff line number Diff line change
@@ -2721,7 +2721,14 @@ struct RestrictedStore : public LocalFSStore
Path addToStore(const string & name, const Path & srcPath,
bool recursive = true, HashType hashAlgo = htSHA256,
PathFilter & filter = defaultPathFilter, RepairFlag repair = NoRepair) override
{ throw Error("addToStore");
{ throw Error("addToStore"); }

void addToStore(const ValidPathInfo & info, Source & narSource,
RepairFlag repair = NoRepair, CheckSigsFlag checkSigs = CheckSigs,
std::shared_ptr<FSAccessor> accessor = 0) override
{
next->addToStore(info, narSource, repair, checkSigs, accessor);
goal.addDependency(info.path);
}

Path addToStoreFromDump(const string & dump, const string & name,
3 changes: 2 additions & 1 deletion tests/local.mk
Original file line number Diff line number Diff line change
@@ -30,7 +30,8 @@ nix_tests = \
search.sh \
nix-copy-ssh.sh \
post-hook.sh \
function-trace.sh
function-trace.sh \
recursive.sh
# parallel.sh

install-tests += $(foreach x, $(nix_tests), tests/$(x))
67 changes: 67 additions & 0 deletions tests/recursive.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
source common.sh

clearStore

export unreachable=$(nix add-to-store ./recursive.sh)

nix build -o $TEST_ROOT/result -L '(
with import ./config.nix;
with import <nix/config.nix>;
mkDerivation {
name = "recursive";
dummy = builtins.toFile "dummy" "bla bla";
SHELL = shell;
# Note: this is a string without context.
unreachable = builtins.getEnv "unreachable";
buildCommand = '\'\''
mkdir $out
PATH=${nixBinDir}:$PATH
opts="--experimental-features nix-command"
# Check that we can query/build paths in our input closure.
nix $opts path-info $dummy
nix $opts build $dummy
# Make sure we cannot query/build paths not in out input closure.
[[ -e $unreachable ]]
(! nix $opts path-info $unreachable)
(! nix $opts build $unreachable)
# Add something to the store.
echo foobar > foobar
foobar=$(nix $opts add-to-store ./foobar)
nix $opts path-info $foobar
nix $opts build $foobar
# Add it to our closure.
ln -s $foobar $out/foobar
[[ $(nix $opts path-info --all | wc -l) -eq 3 ]]
# Build a derivation.
nix $opts build -L '\''(
derivation {
name = "inner1";
builder = builtins.getEnv "SHELL";
system = builtins.getEnv "system";
fnord = builtins.toFile "fnord" "fnord";
args = [ "-c" "echo $fnord blaat > $out" ];
}
)'\''
[[ $(nix $opts path-info --json ./result) =~ fnord ]]
ln -s $(nix $opts path-info ./result) $out/inner1
'\'\'';
})
'

[[ $(cat $TEST_ROOT/result/inner1) =~ blaat ]]

# Make sure the recursively created paths are in the closure.
nix path-info -r $TEST_ROOT/result | grep foobar
nix path-info -r $TEST_ROOT/result | grep fnord
nix path-info -r $TEST_ROOT/result | grep inner1