about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorLeón Orell Valerian Liehr <me@fmease.dev>2024-01-23 21:19:53 +0100
committerGitHub <noreply@github.com>2024-01-23 21:19:53 +0100
commit1e5ec4d82ad8c0823de5556ecb196b42e07a0e8f (patch)
tree6b16749a30171a4fc3c44470bd15397c4fc82a8b /library/std/src
parentdd538b5f05a648d50f7e94ccf01763e68a053453 (diff)
parented4b99a99c5ef1ac54ade6b8b02ce5f44b905221 (diff)
downloadrust-1e5ec4d82ad8c0823de5556ecb196b42e07a0e8f.tar.gz
rust-1e5ec4d82ad8c0823de5556ecb196b42e07a0e8f.zip
Rollup merge of #120188 - devnexen:update_bsd_compiler_base_specs, r=wesleywiser
compiler: update freebsd and netbsd base specs.

both support thread local.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/sys/pal/unix/thread_local_dtor.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/library/std/src/sys/pal/unix/thread_local_dtor.rs b/library/std/src/sys/pal/unix/thread_local_dtor.rs
index 58f7ab84101..7e19e6eb9eb 100644
--- a/library/std/src/sys/pal/unix/thread_local_dtor.rs
+++ b/library/std/src/sys/pal/unix/thread_local_dtor.rs
@@ -17,7 +17,10 @@
     target_os = "android",
     target_os = "fuchsia",
     target_os = "redox",
-    target_os = "hurd"
+    target_os = "hurd",
+    target_os = "freebsd",
+    target_os = "netbsd",
+    target_os = "dragonfly"
 ))]
 // FIXME: The Rust compiler currently omits weakly function definitions (i.e.,
 // __cxa_thread_atexit_impl) and its metadata from LLVM IR.