v8-4.5.x: add support for ARM
This commit is contained in:
parent
f8e426e6e3
commit
4f07c88d46
@ -6,7 +6,13 @@
|
|||||||
assert readline != null;
|
assert readline != null;
|
||||||
|
|
||||||
let
|
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";
|
git_url = "https://chromium.googlesource.com";
|
||||||
clangFlag = if stdenv.isDarwin then "1" else "0";
|
clangFlag = if stdenv.isDarwin then "1" else "0";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user