mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 04:05:40 +03:00
the crashes apparently came from gcc6. so we reduce stack size to 2MB again. This is what android use.
6 lines
312 B
Diff
6 lines
312 B
Diff
--- a/base/threading/platform_thread_linux.cc.orig 2016-08-30 21:36:06.809571185 +0200
|
|
+++ b/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 2mb to avoid running out of space
|
|
+ return (2 * 1024 * 1024);
|