Don't use ADDR_LIMIT_3GB

This gives 32-bit builds on x86_64-linux more memory.
This commit is contained in:
Eelco Dolstra 2014-11-14 14:16:20 +01:00 committed by Ludovic Courtès
parent e0825bd36b
commit b73de6e49b
1 changed files with 1 additions and 1 deletions

View File

@ -2110,7 +2110,7 @@ void DerivationGoal::initChild()
if (drv.platform == "i686-linux" &&
(settings.thisSystem == "x86_64-linux" ||
(!strcmp(utsbuf.sysname, "Linux") && !strcmp(utsbuf.machine, "x86_64")))) {
if (personality(PER_LINUX32_3GB) == -1)
if (personality(PER_LINUX32) == -1)
throw SysError("cannot set i686-linux personality");
}