mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-16 03:06:17 +02:00
e0b159549b
1. Fix build by making the legacy SSH Storey's secret `logFD` setting not a setting on Windows. (It doesn't make sense to specify `void *` handles by integer cross-proccess, I don't think.) 2. Move some files that don't need to be Unix-only anymore back to their original locations.
104 lines
2.9 KiB
Makefile
104 lines
2.9 KiB
Makefile
libraries += libstore
|
|
|
|
libstore_NAME = libnixstore
|
|
|
|
libstore_DIR := $(d)
|
|
|
|
libstore_SOURCES := $(wildcard $(d)/*.cc $(d)/builtins/*.cc $(d)/build/*.cc)
|
|
ifdef HOST_UNIX
|
|
libstore_SOURCES += $(wildcard $(d)/unix/*.cc $(d)/unix/build/*.cc)
|
|
endif
|
|
ifdef HOST_LINUX
|
|
libstore_SOURCES += $(wildcard $(d)/linux/*.cc)
|
|
endif
|
|
ifdef HOST_WINDOWS
|
|
libstore_SOURCES += $(wildcard $(d)/windows/*.cc)
|
|
endif
|
|
|
|
libstore_LIBS = libutil
|
|
|
|
libstore_LDFLAGS += $(SQLITE3_LIBS) $(LIBCURL_LIBS) $(THREAD_LDFLAGS)
|
|
ifdef HOST_LINUX
|
|
libstore_LDFLAGS += -ldl
|
|
endif
|
|
ifdef HOST_WINDOWS
|
|
libstore_LDFLAGS += -lws2_32
|
|
endif
|
|
|
|
$(foreach file,$(libstore_FILES),$(eval $(call install-data-in,$(d)/$(file),$(datadir)/nix/sandbox)))
|
|
|
|
ifeq ($(ENABLE_S3), 1)
|
|
libstore_LDFLAGS += -laws-cpp-sdk-transfer -laws-cpp-sdk-s3 -laws-cpp-sdk-core -laws-crt-cpp
|
|
endif
|
|
|
|
ifdef HOST_SOLARIS
|
|
libstore_LDFLAGS += -lsocket
|
|
endif
|
|
|
|
ifeq ($(HAVE_SECCOMP), 1)
|
|
libstore_LDFLAGS += $(LIBSECCOMP_LIBS)
|
|
endif
|
|
|
|
# Not just for this library itself, but also for downstream libraries using this library
|
|
|
|
INCLUDE_libstore := -I $(d) -I $(d)/build
|
|
ifdef HOST_UNIX
|
|
INCLUDE_libstore += -I $(d)/unix -I $(d)/unix/build
|
|
endif
|
|
ifdef HOST_LINUX
|
|
INCLUDE_libstore += -I $(d)/linux
|
|
endif
|
|
ifdef HOST_WINDOWS
|
|
INCLUDE_libstore += -I $(d)/windows
|
|
endif
|
|
|
|
ifdef HOST_WINDOWS
|
|
NIX_ROOT = N:\\\\
|
|
else
|
|
NIX_ROOT =
|
|
endif
|
|
|
|
# Prefix all but `NIX_STORE_DIR`, since we aren't doing a local store
|
|
# yet so a "logical" store dir that is the same as unix is prefered.
|
|
#
|
|
# Also, it keeps the unit tests working.
|
|
|
|
libstore_CXXFLAGS += \
|
|
$(INCLUDE_libutil) $(INCLUDE_libstore) $(INCLUDE_libstore) \
|
|
-DNIX_PREFIX=\"$(NIX_ROOT)$(prefix)\" \
|
|
-DNIX_STORE_DIR=\"$(storedir)\" \
|
|
-DNIX_DATA_DIR=\"$(NIX_ROOT)$(datadir)\" \
|
|
-DNIX_STATE_DIR=\"$(NIX_ROOT)$(localstatedir)/nix\" \
|
|
-DNIX_LOG_DIR=\"$(NIX_ROOT)$(localstatedir)/log/nix\" \
|
|
-DNIX_CONF_DIR=\"$(NIX_ROOT)$(sysconfdir)/nix\" \
|
|
-DNIX_BIN_DIR=\"$(NIX_ROOT)$(bindir)\" \
|
|
-DNIX_MAN_DIR=\"$(NIX_ROOT)$(mandir)\" \
|
|
-DLSOF=\"$(NIX_ROOT)$(lsof)\"
|
|
|
|
ifeq ($(embedded_sandbox_shell),yes)
|
|
libstore_CXXFLAGS += -DSANDBOX_SHELL=\"__embedded_sandbox_shell__\"
|
|
|
|
$(d)/unix/build/local-derivation-goal.cc: $(d)/unix/embedded-sandbox-shell.gen.hh
|
|
|
|
$(d)/unix/embedded-sandbox-shell.gen.hh: $(sandbox_shell)
|
|
$(trace-gen) hexdump -v -e '1/1 "0x%x," "\n"' < $< > $@.tmp
|
|
@mv $@.tmp $@
|
|
else
|
|
ifneq ($(sandbox_shell),)
|
|
libstore_CXXFLAGS += -DSANDBOX_SHELL="\"$(sandbox_shell)\""
|
|
endif
|
|
endif
|
|
|
|
$(d)/local-store.cc: $(d)/schema.sql.gen.hh $(d)/ca-specific-schema.sql.gen.hh
|
|
|
|
$(d)/unix/build.cc:
|
|
|
|
clean-files += $(d)/schema.sql.gen.hh $(d)/ca-specific-schema.sql.gen.hh
|
|
|
|
$(eval $(call install-file-in, $(buildprefix)$(d)/nix-store.pc, $(libdir)/pkgconfig, 0644))
|
|
|
|
$(foreach i, $(wildcard src/libstore/builtins/*.hh), \
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix/builtins, 0644)))
|
|
|
|
$(foreach i, $(wildcard src/libstore/build/*.hh), \
|
|
$(eval $(call install-file-in, $(i), $(includedir)/nix/build, 0644)))
|