Skip to content

Commit d05745f

Browse files
committed
Bump the address space limits for ldconfig
1 parent e3a2035 commit d05745f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/nvc_ldcache.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ limit_resources(struct error *err)
212212
limit = (struct rlimit){10, 10};
213213
if (setrlimit(RLIMIT_CPU, &limit) < 0)
214214
goto fail;
215-
limit = (struct rlimit){512*1024*1024, 512*1024*1024};
215+
limit = (struct rlimit){2ull*1024*1024*1024, 2ull*1024*1024*1024};
216216
if (setrlimit(RLIMIT_AS, &limit) < 0)
217217
goto fail;
218218
limit = (struct rlimit){64, 64};

0 commit comments

Comments
 (0)