Alyssa Ross
c57ab17687
Linux is (as far as I know) the only mainstream operating system that requires linking with libdl for dlopen. On BSD, libdl doesn't exist, so on non-FreeBSD BSDs linking will currently fail. On macOS, it's apparently just a symlink to libSystem (macOS libc), presumably present for compatibility with things that assume Linux. So the right thing to do here is to only add -ldl on Linux, not to add it for everything that isn't FreeBSD.
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
ifeq ($(OPTIMIZE), 1)
|
|
RUST_MODE = --release
|
|
RUST_DIR = release
|
|
else
|
|
RUST_MODE =
|
|
RUST_DIR = debug
|
|
endif
|
|
|
|
libnixrust_PATH := $(d)/target/$(RUST_DIR)/libnixrust.$(SO_EXT)
|
|
libnixrust_INSTALL_PATH := $(libdir)/libnixrust.$(SO_EXT)
|
|
libnixrust_LDFLAGS_USE := -L$(d)/target/$(RUST_DIR) -lnixrust
|
|
libnixrust_LDFLAGS_USE_INSTALLED := -L$(libdir) -lnixrust
|
|
|
|
ifeq ($(OS), Linux)
|
|
libnixrust_LDFLAGS_USE += -ldl
|
|
libnixrust_LDFLAGS_USE_INSTALLED += -ldl
|
|
endif
|
|
|
|
ifeq ($(OS), Darwin)
|
|
libnixrust_BUILD_FLAGS = NIX_LDFLAGS="-undefined dynamic_lookup"
|
|
else
|
|
libnixrust_LDFLAGS_USE += -Wl,-rpath,$(abspath $(d)/target/$(RUST_DIR))
|
|
libnixrust_LDFLAGS_USE_INSTALLED += -Wl,-rpath,$(libdir)
|
|
endif
|
|
|
|
$(libnixrust_PATH): $(call rwildcard, $(d)/src, *.rs) $(d)/Cargo.toml
|
|
$(trace-gen) cd nix-rust && CARGO_HOME=$$(if [[ -d vendor ]]; then echo vendor; fi) \
|
|
$(libnixrust_BUILD_FLAGS) \
|
|
cargo build $(RUST_MODE) $$(if [[ -d vendor ]]; then echo --offline; fi) \
|
|
&& touch target/$(RUST_DIR)/libnixrust.$(SO_EXT)
|
|
|
|
$(libnixrust_INSTALL_PATH): $(libnixrust_PATH)
|
|
$(target-gen) cp $^ $@
|
|
ifeq ($(OS), Darwin)
|
|
install_name_tool -id $@ $@
|
|
endif
|
|
|
|
clean: clean-rust
|
|
|
|
clean-rust:
|
|
$(suppress) rm -rfv nix-rust/target
|
|
|
|
ifneq ($(OS), Darwin)
|
|
check: rust-tests
|
|
|
|
rust-tests:
|
|
$(trace-test) cd nix-rust && CARGO_HOME=$$(if [[ -d vendor ]]; then echo vendor; fi) cargo test --release $$(if [[ -d vendor ]]; then echo --offline; fi)
|
|
endif
|