aboutsummaryrefslogtreecommitdiff
path: root/src/libexpr/local.mk
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2014-06-01 10:42:56 -0400
committerShea Levy <shea@shealevy.com>2014-06-17 12:08:01 -0400
commit5cd022d6c099c583c0494bdacd06f4eb32661135 (patch)
treedee973d2ba3f9c07cdffc15951483fa359450490 /src/libexpr/local.mk
parent9d0709e8c47082cec35d6412053eacfadae23bcd (diff)
Add importNative primop
This can be used to import a dynamic shared object and return an arbitrary value, including new primops. This can be used both to test new primops without having to recompile nix every time, and to build specialized primops that probably don't belong upstream (e.g. a function that calls out to gpg to decrypt a nixops secret as-needed). The imported function should initialize the Value & as needed. A single import can define multiple values by creating an attrset or list, of course. An example initialization function might look like: extern "C" void initialize(nix::EvalState & state, nix::Value & v) { v.type = nix::tPrimOp; v.primOp = NEW nix::PrimOp(myFun, 1, state.symbols.create("myFun")); } Then `builtins.importNative ./example.so "initialize"` will evaluate to the primop defined in the myFun function.
Diffstat (limited to 'src/libexpr/local.mk')
-rw-r--r--src/libexpr/local.mk2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libexpr/local.mk b/src/libexpr/local.mk
index b3b408691..75a0e185e 100644
--- a/src/libexpr/local.mk
+++ b/src/libexpr/local.mk
@@ -8,6 +8,8 @@ libexpr_SOURCES := $(wildcard $(d)/*.cc) $(d)/lexer-tab.cc $(d)/parser-tab.cc
libexpr_LIBS = libutil libstore libformat
+libexpr_LDFLAGS = -ldl
+
# The dependency on libgc must be propagated (i.e. meaning that
# programs/libraries that use libexpr must explicitly pass -lgc),
# because inline functions in libexpr's header files call libgc.