about summary refs log tree commit diff
path: root/src/nix-copy-closure/local.mk
AgeCommit message (Collapse)AuthorFilesLines
2018-04-21 Fix library ordering in MakefilesAndrew Dunham1-1/+1
The existing ordering linked `libutil` before `libstore`, which causes link failures when building statically. This is due to `libstore` using functions from `libutil`, and the fact that symbol resolution works "forward" - i.e. if you pass `-lfoo -lbar -lbaz`, any symbols that `libbar` uses from `libbaz` will be resolved, but symbols from `libfoo` will not since it comes first in the command line. All this to say: this commit reorders the libraries which fixes the link errors.
2017-01-20 nix-copy-closure: Implement in C++.Shea Levy1-0/+7
Tests fail currently because the database is not given proper hashes in the VM