summaryrefslogtreecommitdiff
path: root/repo/system/perl/musl-stack-size.patch
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
committerdavidovski <david@davidovski.xyz>2022-05-31 11:05:19 +0100
commit48ca75555522716f0f686dcae3dd6cf3d8ad714d (patch)
tree00c0f58550ba4661e87376f2f02c8001c69bae44 /repo/system/perl/musl-stack-size.patch
parent871b2b573f01c1b3176a0f65458b3d281b41c437 (diff)
removed idea of repos
Diffstat (limited to 'repo/system/perl/musl-stack-size.patch')
-rw-r--r--repo/system/perl/musl-stack-size.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/repo/system/perl/musl-stack-size.patch b/repo/system/perl/musl-stack-size.patch
deleted file mode 100644
index 08a9ef0..0000000
--- a/repo/system/perl/musl-stack-size.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Tests fails on s390x due to low thread stack size
-upstream report: https://github.com/Perl/perl5/issues/18160
-
-diff --git a/t/thread_it.pl b/t/thread_it.pl
-index f38a580..e8c450a 100644
---- a/t/thread_it.pl
-+++ b/t/thread_it.pl
-@@ -36,7 +36,7 @@ my $curr = threads->create({
- stack_size => $^O eq 'hpux' ? 524288 :
- $^O eq 'darwin' ? 2000000:
- $^O eq 'VMS' ? 150000 :
-- $^O eq 'aix' ? 1500000 : 0,
-+ $^O eq 'aix' ? 1500000 : 256*1024,
- }, sub {
- run_tests();
- return defined &curr_test ? curr_test() : ()