From abd62a8a47c055dc78ef2fc9ee078503d2a34749 Mon Sep 17 00:00:00 2001 From: Duncaen Date: Tue, 30 Aug 2016 21:42:48 +0200 Subject: [PATCH] chromium: add musl-patches/default-pthread-stacksize.patch --- .../files/musl-patches/default-pthread-stacksize.patch | 6 ++++++ srcpkgs/chromium/template | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 srcpkgs/chromium/files/musl-patches/default-pthread-stacksize.patch diff --git a/srcpkgs/chromium/files/musl-patches/default-pthread-stacksize.patch b/srcpkgs/chromium/files/musl-patches/default-pthread-stacksize.patch new file mode 100644 index 0000000000..a316d84cad --- /dev/null +++ b/srcpkgs/chromium/files/musl-patches/default-pthread-stacksize.patch @@ -0,0 +1,6 @@ +--- base/threading/platform_thread_linux.cc.orig 2016-08-30 21:36:06.809571185 +0200 ++++ base/threading/platform_thread_linux.cc 2016-08-30 21:36:14.582805286 +0200 +@@ -99 +99,2 @@ size_t GetDefaultThreadStackSize(const p +- return 0; ++ // use 8mb like glibc to avoid running out of space ++ return (1 << 23); diff --git a/srcpkgs/chromium/template b/srcpkgs/chromium/template index 106802297c..f5719a7a30 100644 --- a/srcpkgs/chromium/template +++ b/srcpkgs/chromium/template @@ -2,7 +2,7 @@ pkgname=chromium # See http://www.chromium.org/developers/calendar for the latest version version=52.0.2743.116 -revision=2 +revision=3 short_desc="Google's attempt at creating a safer, faster, and more stable browser" maintainer="Juan RP " homepage="http://www.chromium.org/"