在ubuntu中安装V8

时间:2015-02-05 04:55:38

标签: v8

我已按照以下步骤在ubuntu中安装v8。在此过程中未发生错误

svn checkout http://v8.googlecode.com/svn/trunk/ ./v8
cd v8
make builddeps
make native

但是当我尝试使用以下命令运行hello world程序时,我收到错误

 g++ -Iv8/include hello_world.cpp -o hello_world.o
v8/out/native/obj.target/tools/gyp/libv8_base.a 

v8/out/native/obj.target/tools/gyp/libv8_snapshot.a -lpthread

错误是

g++: error: v8/out/native/obj.target/tools/gyp/libv8_base.a: No such file or directory
g++: error: v8/out/native/obj.target/tools/gyp/libv8_snapshot.a: No such file or directory

2 个答案:

答案 0 :(得分:0)

在不知道您的文件夹结构的情况下,您似乎已经在v8文件夹中,因此请尝试将命令更改为:

g++ -Iv8/include hello_world.cpp -o hello_world.o
out/native/obj.target/tools/gyp/libv8_base.a 
out/native/obj.target/tools/gyp/libv8_snapshot.a -lpthread

答案 1 :(得分:0)

您只需使用以下命令运行程序!!

g ++ hello_world.cpp -o hello_world.o -lv8

:)