mirror of
https://github.com/NixOS/nix
synced 2025-06-28 01:11:15 +02:00
* Support i686-linux builds directly on x86_64-linux Nix
installations. This is implemented using the personality() syscall, which causes uname to return "i686" in child processes.
This commit is contained in:
parent
8e39d9bdb3
commit
c504d90c11
2 changed files with 24 additions and 2 deletions
|
@ -40,6 +40,12 @@
|
|||
#define CHROOT_ENABLED HAVE_CHROOT && HAVE_UNSHARE && HAVE_SYS_MOUNT_H && defined(MS_BIND) && defined(CLONE_NEWNS)
|
||||
|
||||
|
||||
#if HAVE_SYS_PERSONALITY_H
|
||||
#include <sys/personality.h>
|
||||
#define CAN_DO_LINUX32_BUILDS
|
||||
#endif
|
||||
|
||||
|
||||
namespace nix {
|
||||
|
||||
using std::map;
|
||||
|
@ -1474,7 +1480,11 @@ void DerivationGoal::startBuilder()
|
|||
format("building path(s) %1%") % showPaths(outputPaths(drv.outputs)))
|
||||
|
||||
/* Right platform? */
|
||||
if (drv.platform != thisSystem)
|
||||
if (drv.platform != thisSystem
|
||||
#ifdef CAN_DO_LINUX32_BUILDS
|
||||
&& !(drv.platform == "i686-linux" && thisSystem == "x86_64-linux")
|
||||
#endif
|
||||
)
|
||||
throw BuildError(
|
||||
format("a `%1%' is required to build `%3%', but I am a `%2%'")
|
||||
% drv.platform % thisSystem % drvPath);
|
||||
|
@ -1806,6 +1816,13 @@ void DerivationGoal::startBuilder()
|
|||
|
||||
initChild();
|
||||
|
||||
#ifdef CAN_DO_LINUX32_BUILDS
|
||||
if (drv.platform == "i686-linux" && thisSystem == "x86_64-linux") {
|
||||
if (personality(PER_LINUX32_3GB) == -1)
|
||||
throw SysError("cannot set i686-linux personality");
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Fill in the environment. */
|
||||
Strings envStrs;
|
||||
for (Environment::const_iterator i = env.begin();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue