v8-4.5.x: add support for ARM

This commit is contained in:
Charles Strahan 2015-10-23 14:35:04 -04:00
parent f8e426e6e3
commit 4f07c88d46

View file

@ -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";