From e8878eee8ac99c37f102ed73de06d94d7d814b44 Mon Sep 17 00:00:00 2001 From: Norman Feske Date: Wed, 4 Dec 2019 16:29:43 +0100 Subject: [PATCH] ldso: increase initial heap block This is needed to enable the fork of 'make' in the genodians.org scenario on NOVA. Issue #3578 --- repos/base/src/lib/ldso/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/repos/base/src/lib/ldso/main.cc b/repos/base/src/lib/ldso/main.cc index 277bea2c5..cca5a08bf 100644 --- a/repos/base/src/lib/ldso/main.cc +++ b/repos/base/src/lib/ldso/main.cc @@ -673,7 +673,7 @@ void Genode::init_ldso_phdr(Env &env) * however, is copied from the parent process. So the pointed-to objects * must reside on the same addresses in the parent and child. */ - static char initial_block[4*1024]; + static char initial_block[8*1024]; heap().construct(&env.ram(), &env.rm(), Heap::UNLIMITED, initial_block, sizeof(initial_block));