Nope, that wasn't it. It seems that I am missing the archive file 
*snapshot.a. It wasn't built during the make x64.release.

I tried removing the snapshot archive but got compile errors for 
hello_world.cpp

the following 
> jerrad@ubuntu:/V8/v8$ g++ -I. hello_world.cpp -o hello_world 
> -Wl,--start-group 
> out/x64.release/obj.target/{tools/gyp/libv8_{base,libbase,
snapshot,libplatform},third_party/icu/libicu{uc,i18n,data}}.a 
> -Wl,--end-group -lrt -pthread -std=c++0x 

became
> jerrad@ubuntu:/V8/v8$ g++ -I. hello_world.cpp -o hello_world 
> -Wl,--start-group 
> out/x64.release/obj.target/{tools/gyp/libv8_{base,libbase
,libplatform},third_party/icu/libicu{uc,i18n,data}}.a 
> -Wl,--end-group -lrt -pthread -std=c++0x 

I will try to use the a32.release and see if it builds correctly. Any ideas 
why *snapshot.a wouldnt exist after a build?


On Sunday, August 2, 2015 at 6:25:14 PM UTC-4, Ben Noordhuis wrote:
>
> On Sun, Aug 2, 2015 at 11:48 PM, Jerrad Patch <[email protected] 
> <javascript:>> wrote: 
> > Hey, Ben. Thanks for the reply. I have fixed that error 
> > 
> > here is the command: 
> > 
> > jerrad@ubuntu:/V8/v8$ g++ -I. hello_world.cpp -o hello_world 
> > -Wl,--start-group 
> > 
> out/x64.release/obj.target/{tools/gyp/libv8_{base,libbase,snapshot,libplatform},third_party/icu/libicu{uc,i18n,data}}.a
>  
>
> > -Wl,--end-group -lrt -pthread -std=c++0x 
> > 
> > here is the error:    g++: error: 
> > out/x64.release/obj.target/tools/gyp/libv8_snapshot.a: No such file or 
> > directory 
> > 
> > and if I go to the /V8/v8/out/x64.release/obj.target/tools/gyp directory 
> the 
> > file does not exist, 
> > 
> > I did not receive any compilation errors when building V8, so I am 
> wondering 
> > if I should be using a different lib file in the */gyp folder? 
>
> Quite possibly.  `find out/ -name \*.a` should find all the archive 
> files, just update the paths accordingly. 
>

-- 
-- 
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
--- 
You received this message because you are subscribed to the Google Groups 
"v8-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to