From 5b0a8e54f95d12646fe01eb19a24ceb72a6e3c1f Mon Sep 17 00:00:00 2001 From: Christian Prochaska Date: Fri, 9 Aug 2013 15:02:28 +0200 Subject: [PATCH] ldso: increase size of managed ELF dataspace The size needs to be increased for Qt5 libraries. Issue #345. --- os/src/lib/ldso/file.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/src/lib/ldso/file.cc b/os/src/lib/ldso/file.cc index 520d702a4..1d921fac6 100644 --- a/os/src/lib/ldso/file.cc +++ b/os/src/lib/ldso/file.cc @@ -33,7 +33,7 @@ namespace Genode { private: /* size of dataspace */ - enum { RESERVATION = 128 * 1024 * 1024 }; + enum { RESERVATION = 160 * 1024 * 1024 }; addr_t _base; /* base address of dataspace */ Allocator_avl _range; /* VM range allocator */