about summary refs log tree commit diff
path: root/ldc-druntime-finiTLSRanges.patch
diff options
context:
space:
mode:
authorpjotrp2026-03-22 07:38:26 +0100
committerpjotrp2026-03-22 07:38:26 +0100
commit70454ae1b52955913f4bb998b4ce3db05a4a631d (patch)
treee60ee5246c4f2191ad80500e7746aefc7ca20940 /ldc-druntime-finiTLSRanges.patch
parent8bda8859598dd7c3b740a73ae2c54238b757d3a6 (diff)
downloadguix-bioinformatics-70454ae1b52955913f4bb998b4ce3db05a4a631d.tar.gz
delete unused patch files
Diffstat (limited to 'ldc-druntime-finiTLSRanges.patch')
-rw-r--r--ldc-druntime-finiTLSRanges.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/ldc-druntime-finiTLSRanges.patch b/ldc-druntime-finiTLSRanges.patch
deleted file mode 100644
index 152f341..0000000
--- a/ldc-druntime-finiTLSRanges.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-diff --git a/src/rt/sections_elf_shared.d b/src/rt/sections_elf_shared.d
-index a1ea73a..243e3f6 100644
---- a/src/rt/sections_elf_shared.d
-+++ b/src/rt/sections_elf_shared.d
-@@ -149,7 +149,8 @@ version (Shared)
- 
-     void finiTLSRanges(Array!(ThreadDSO)* tdsos)
-     {
--        tdsos.reset();
-+        // Disabling like static version - not sure this one is misbehaving though
-+        // tdsos.reset();
-     }
- 
-     void scanTLSRanges(Array!(ThreadDSO)* tdsos, scope ScanDG dg) nothrow
-@@ -234,7 +235,8 @@ else
- 
-     void finiTLSRanges(Array!(void[])* rngs)
-     {
--        rngs.reset();
-+        // Throws exception, see https://github.com/lomereiter/sambamba/issues/219#issuecomment-275838455
-+        // rngs.reset();
-     }
- 
-     void scanTLSRanges(Array!(void[])* rngs, scope ScanDG dg) nothrow