linux_chromiumos: require 64bit build host
I noticed that almost all the Hydra build failures were on i686. Sure enough, upstream says that you need an x86_64 machine to build the kernel.
This commit is contained in:
parent
32b7b0009f
commit
bd9737cc3e
@ -1,5 +1,8 @@
|
||||
{ stdenv, fetchgit, perl, buildLinux, ncurses, openssh, ... } @ args:
|
||||
|
||||
# ChromiumOS requires a 64bit build host
|
||||
assert stdenv.is64bit;
|
||||
|
||||
import ./generic.nix (args // rec {
|
||||
version = "3.14.0";
|
||||
extraMeta.branch = "3.14";
|
||||
|
@ -1,5 +1,8 @@
|
||||
{ stdenv, fetchgit, perl, buildLinux, ncurses, ... } @ args:
|
||||
|
||||
# ChromiumOS requires a 64bit build host
|
||||
assert stdenv.is64bit;
|
||||
|
||||
import ./generic.nix (args // rec {
|
||||
version = "3.18.0";
|
||||
extraMeta.branch = "3.18";
|
||||
|
Loading…
Reference in New Issue
Block a user