ubuntu 64位 编译v8

来源:互联网 发布:游戏编程如何入门 编辑:程序博客网 时间:2024/05/29 10:18

debian, ubuntu, linux mint 编译v8

=========================================================

准备编译工具:

sudo aptitude install build-essential

获取v8:

git clone https://github.com/v8/v8.git

获取v8的依赖:

cd v8make dependencies

编译:

make -j4 native

-j4 -- 四线程编译,native target指明只编译本机架构的版本

原创粉丝点击