summaryrefslogtreecommitdiffstats
path: root/vendor/libloading/src/os/unix
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/libloading/src/os/unix')
-rw-r--r--vendor/libloading/src/os/unix/consts.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/libloading/src/os/unix/consts.rs b/vendor/libloading/src/os/unix/consts.rs
index a135c0c43..ed3edaf82 100644
--- a/vendor/libloading/src/os/unix/consts.rs
+++ b/vendor/libloading/src/os/unix/consts.rs
@@ -83,6 +83,7 @@ mod posix {
target_os = "fuchsia",
target_os = "redox",
target_os = "nto",
+ target_os = "hurd",
))] {
pub(super) const RTLD_LAZY: c_int = 1;
} else {
@@ -117,6 +118,7 @@ mod posix {
target_os = "fuchsia",
target_os = "redox",
target_os = "nto",
+ target_os = "hurd",
))] {
pub(super) const RTLD_NOW: c_int = 2;
} else if #[cfg(all(target_os = "android",target_pointer_width = "32"))] {
@@ -165,6 +167,7 @@ mod posix {
target_os = "fuchsia",
target_os = "redox",
target_os = "nto",
+ target_os = "hurd",
))] {
pub(super) const RTLD_GLOBAL: c_int = 0x100;
} else {
@@ -206,6 +209,7 @@ mod posix {
target_os = "fuchsia",
target_os = "redox",
+ target_os = "hurd",
))] {
pub(super) const RTLD_LOCAL: c_int = 0;
} else {