1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-12 21:46:01 +01:00

Fix the std::filesystem linking on darwin

This commit is contained in:
Théophane Hufschmitt 2022-04-11 10:20:37 +02:00
parent 48b8de73f0
commit e58c47cc1a

View file

@ -6,6 +6,10 @@ libfindroots_DIR := $(d)/lib
libfindroots_SOURCES := $(wildcard $(d)/lib/*.cc)
ifdef HOST_DARWIN
libfindroots_LDFLAGS += -lc++fs
endif
programs += nix-find-roots
nix-find-roots_DIR := $(d)