mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-22 14:06:16 +02:00
Merge pull request #11750 from artemist/nix-openbsd
Fix building on OpenBSD
This commit is contained in:
commit
059bdb5a64
3 changed files with 10 additions and 2 deletions
|
@ -86,7 +86,9 @@ define build-library
|
||||||
else
|
else
|
||||||
ifndef HOST_DARWIN
|
ifndef HOST_DARWIN
|
||||||
ifndef HOST_WINDOWS
|
ifndef HOST_WINDOWS
|
||||||
$(1)_LDFLAGS += -Wl,-z,defs
|
ifndef HOST_OPENBSD
|
||||||
|
$(1)_LDFLAGS += -Wl,-z,defs
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
|
@ -21,6 +21,10 @@ ifdef HOST_OS
|
||||||
HOST_NETBSD = 1
|
HOST_NETBSD = 1
|
||||||
HOST_UNIX = 1
|
HOST_UNIX = 1
|
||||||
endif
|
endif
|
||||||
|
ifeq ($(patsubst openbsd%,,$(HOST_KERNEL)),)
|
||||||
|
HOST_OPENBSD = 1
|
||||||
|
HOST_UNIX = 1
|
||||||
|
endif
|
||||||
ifeq ($(HOST_KERNEL), linux)
|
ifeq ($(HOST_KERNEL), linux)
|
||||||
HOST_LINUX = 1
|
HOST_LINUX = 1
|
||||||
HOST_UNIX = 1
|
HOST_UNIX = 1
|
||||||
|
|
|
@ -76,7 +76,9 @@
|
||||||
#
|
#
|
||||||
# Temporarily disabled on Windows because the `GC_throw_bad_alloc`
|
# Temporarily disabled on Windows because the `GC_throw_bad_alloc`
|
||||||
# symbol is missing during linking.
|
# symbol is missing during linking.
|
||||||
, enableGC ? !stdenv.hostPlatform.isWindows
|
#
|
||||||
|
# Disabled on OpenBSD because of missing `_data_start` symbol while linking
|
||||||
|
, enableGC ? !stdenv.hostPlatform.isWindows && !stdenv.hostPlatform.isOpenBSD
|
||||||
|
|
||||||
# Whether to enable Markdown rendering in the Nix binary.
|
# Whether to enable Markdown rendering in the Nix binary.
|
||||||
, enableMarkdown ? !stdenv.hostPlatform.isWindows
|
, enableMarkdown ? !stdenv.hostPlatform.isWindows
|
||||||
|
|
Loading…
Reference in a new issue