Skip to content

Commit

Permalink
v8-4.5.x: add support for ARM
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrahan committed Oct 23, 2015
1 parent f8e426e commit 4f07c88
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion pkgs/development/libraries/v8/4.5.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,13 @@
assert readline != null;

let
arch = if stdenv.is64bit then "x64" else "ia32";
arch = if stdenv.isArm
then if stdenv.is64bit
then"arm64"
else "arm"
else if stdenv.is64bit
then"x64"
else "ia32";
git_url = "https://chromium.googlesource.com";
clangFlag = if stdenv.isDarwin then "1" else "0";

Expand Down

0 comments on commit 4f07c88

Please sign in to comment.