* webkit2gtk: updates + stacksize patch
@ 2018-06-19 15:41 Quentin Rameau
2018-06-19 15:41 ` [PATCH 1/4] webkit2gtk: add stack-size patch Quentin Rameau
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Quentin Rameau @ 2018-06-19 15:41 UTC (permalink / raw)
To: Void Linux
Hi,
Maybe you can skip updates to 2.20.1 and 2.20.2, these are just
here as to reflect my local repo.
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/4] webkit2gtk: add stack-size patch
2018-06-19 15:41 webkit2gtk: updates + stacksize patch Quentin Rameau
@ 2018-06-19 15:41 ` Quentin Rameau
2018-06-19 15:41 ` [PATCH 2/4] webkit2gtk: update to 2.20.1 Quentin Rameau
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Quentin Rameau @ 2018-06-19 15:41 UTC (permalink / raw)
To: Void Linux
Taken from Gentoo musl overlay.
This is just plaster and a better fix would be to set stacksize
according to the JavaScriptCore needs on request.
---
srcpkgs/webkit2gtk/patches/fix-stacksize.patch | 15 +++++++++++++++
1 file changed, 15 insertions(+)
create mode 100644 srcpkgs/webkit2gtk/patches/fix-stacksize.patch
diff --git a/srcpkgs/webkit2gtk/patches/fix-stacksize.patch b/srcpkgs/webkit2gtk/patches/fix-stacksize.patch
new file mode 100644
index 0000000000..987d7f3c83
--- /dev/null
+++ b/srcpkgs/webkit2gtk/patches/fix-stacksize.patch
@@ -0,0 +1,15 @@
+--- Source/JavaScriptCore/runtime/Options.h.orig 2018-04-13 13:23:28.147699729 +0200
++++ Source/JavaScriptCore/runtime/Options.h 2018-04-13 13:24:24.256969737 +0200
+@@ -126,9 +126,9 @@ constexpr bool enableAsyncIteration = fa
+ \
+ v(bool, reportMustSucceedExecutableAllocations, false, Normal, nullptr) \
+ \
+- v(unsigned, maxPerThreadStackUsage, 4 * MB, Normal, "Max allowed stack usage by the VM") \
+- v(unsigned, softReservedZoneSize, 128 * KB, Normal, "A buffer greater than reservedZoneSize that reserves space for stringifying exceptions.") \
+- v(unsigned, reservedZoneSize, 64 * KB, Normal, "The amount of stack space we guarantee to our clients (and to interal VM code that does not call out to clients).") \
++ v(unsigned, maxPerThreadStackUsage, 80 * KB, Normal, "Max allowed stack usage by the VM") \
++ v(unsigned, softReservedZoneSize, 32 * KB, Normal, "A buffer greater than reservedZoneSize that reserves space for stringifying exceptions.") \
++ v(unsigned, reservedZoneSize, 16 * KB, Normal, "The amount of stack space we guarantee to our clients (and to interal VM code that does not call out to clients).") \
+ \
+ v(bool, crashIfCantAllocateJITMemory, false, Normal, nullptr) \
+ v(unsigned, jitMemoryReservationSize, 0, Normal, "Set this number to change the executable allocation size in ExecutableAllocatorFixedVMPool. (In bytes.)") \
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 2/4] webkit2gtk: update to 2.20.1.
2018-06-19 15:41 webkit2gtk: updates + stacksize patch Quentin Rameau
2018-06-19 15:41 ` [PATCH 1/4] webkit2gtk: add stack-size patch Quentin Rameau
@ 2018-06-19 15:41 ` Quentin Rameau
2018-06-19 15:41 ` [PATCH 3/4] webkit2gtk: update to 2.20.2 Quentin Rameau
2018-06-19 15:41 ` [PATCH 4/4] webkit2gtk: update to 2.20.3 Quentin Rameau
3 siblings, 0 replies; 5+ messages in thread
From: Quentin Rameau @ 2018-06-19 15:41 UTC (permalink / raw)
To: Void Linux
---
srcpkgs/webkit2gtk/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template
index 6d75e6b1aa..e136190666 100644
--- a/srcpkgs/webkit2gtk/template
+++ b/srcpkgs/webkit2gtk/template
@@ -1,6 +1,6 @@
# Template file for 'webkit2gtk'
pkgname=webkit2gtk
-version=2.20.0
+version=2.20.1
revision=1
wrksrc="webkitgtk-$version"
build_style=cmake
@@ -13,7 +13,7 @@ maintainer="Enno Boland <got...@voidlinux.eu>"
homepage="https://webkitgtk.org/"
license="LGPL-2.1, 2-clause-BSD"
distfiles="${homepage}/releases/webkitgtk-${version}.tar.xz"
-checksum=57f640f720bd9a8a7207f3321cf803a15c2f207b4e7b75ff1be17bc1eeb00a3c
+checksum=43e43285fa4e393080cc4fbd5ad8644749a75b1e0b811b230b63ae56806c8959
# ETOOHUGE
nodebug=1
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 3/4] webkit2gtk: update to 2.20.2.
2018-06-19 15:41 webkit2gtk: updates + stacksize patch Quentin Rameau
2018-06-19 15:41 ` [PATCH 1/4] webkit2gtk: add stack-size patch Quentin Rameau
2018-06-19 15:41 ` [PATCH 2/4] webkit2gtk: update to 2.20.1 Quentin Rameau
@ 2018-06-19 15:41 ` Quentin Rameau
2018-06-19 15:41 ` [PATCH 4/4] webkit2gtk: update to 2.20.3 Quentin Rameau
3 siblings, 0 replies; 5+ messages in thread
From: Quentin Rameau @ 2018-06-19 15:41 UTC (permalink / raw)
To: Void Linux
---
srcpkgs/webkit2gtk/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template
index e136190666..7d725b39fb 100644
--- a/srcpkgs/webkit2gtk/template
+++ b/srcpkgs/webkit2gtk/template
@@ -1,6 +1,6 @@
# Template file for 'webkit2gtk'
pkgname=webkit2gtk
-version=2.20.1
+version=2.20.2
revision=1
wrksrc="webkitgtk-$version"
build_style=cmake
@@ -13,7 +13,7 @@ maintainer="Enno Boland <got...@voidlinux.eu>"
homepage="https://webkitgtk.org/"
license="LGPL-2.1, 2-clause-BSD"
distfiles="${homepage}/releases/webkitgtk-${version}.tar.xz"
-checksum=43e43285fa4e393080cc4fbd5ad8644749a75b1e0b811b230b63ae56806c8959
+checksum=dffe93a241f03f1c73b369f4e323e4d8f12e39d33d5515948cbf454ca4b526e2
# ETOOHUGE
nodebug=1
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 4/4] webkit2gtk: update to 2.20.3.
2018-06-19 15:41 webkit2gtk: updates + stacksize patch Quentin Rameau
` (2 preceding siblings ...)
2018-06-19 15:41 ` [PATCH 3/4] webkit2gtk: update to 2.20.2 Quentin Rameau
@ 2018-06-19 15:41 ` Quentin Rameau
3 siblings, 0 replies; 5+ messages in thread
From: Quentin Rameau @ 2018-06-19 15:41 UTC (permalink / raw)
To: Void Linux
---
srcpkgs/webkit2gtk/template | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/srcpkgs/webkit2gtk/template b/srcpkgs/webkit2gtk/template
index 7d725b39fb..6eb7a30031 100644
--- a/srcpkgs/webkit2gtk/template
+++ b/srcpkgs/webkit2gtk/template
@@ -1,6 +1,6 @@
# Template file for 'webkit2gtk'
pkgname=webkit2gtk
-version=2.20.2
+version=2.20.3
revision=1
wrksrc="webkitgtk-$version"
build_style=cmake
@@ -13,7 +13,7 @@ maintainer="Enno Boland <got...@voidlinux.eu>"
homepage="https://webkitgtk.org/"
license="LGPL-2.1, 2-clause-BSD"
distfiles="${homepage}/releases/webkitgtk-${version}.tar.xz"
-checksum=dffe93a241f03f1c73b369f4e323e4d8f12e39d33d5515948cbf454ca4b526e2
+checksum=579b307d78fa16a73f112790178022166d7ad17d4147492ced9b9fba48f20dd8
# ETOOHUGE
nodebug=1
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2018-06-19 15:41 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-06-19 15:41 webkit2gtk: updates + stacksize patch Quentin Rameau
2018-06-19 15:41 ` [PATCH 1/4] webkit2gtk: add stack-size patch Quentin Rameau
2018-06-19 15:41 ` [PATCH 2/4] webkit2gtk: update to 2.20.1 Quentin Rameau
2018-06-19 15:41 ` [PATCH 3/4] webkit2gtk: update to 2.20.2 Quentin Rameau
2018-06-19 15:41 ` [PATCH 4/4] webkit2gtk: update to 2.20.3 Quentin Rameau
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).