Re: [v8-users] Getting started tutorial problems

2015-08-04 Thread Michael Hablich
Answers inline On Tuesday, August 4, 2015 at 4:59:48 AM UTC+2, Jerrad Patch wrote: this version is the latest version, not sure how to check that with the depot_tools program. I tried the help with fetch --help but it doesnt show --version. Getting Started is only compatible with the

Re: [v8-users] Getting started tutorial problems

2015-08-04 Thread Jerrad Patch
Sucess!! thanks guys On Tuesday, August 4, 2015 at 6:44:54 AM UTC-4, Michael Hablich wrote: Answers inline On Tuesday, August 4, 2015 at 4:59:48 AM UTC+2, Jerrad Patch wrote: this version is the latest version, not sure how to check that with the depot_tools program. I tried the help with

Re: [v8-users] Getting started tutorial problems

2015-08-03 Thread Jerrad Patch
this version is the latest version, not sure how to check that with the depot_tools program. I tried the help with fetch --help but it doesnt show --version. I have updated the archive to use *externap_snapshot.a, but I still get compile errors. I am using the x64.release, and the sample code

Re: [v8-users] Getting started tutorial problems

2015-08-03 Thread Michael Hablich
Which V8 version are you trying to build? 4.3? On Monday, August 3, 2015 at 1:34:52 AM UTC+2, Jerrad Patch wrote: 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

Re: [v8-users] Getting started tutorial problems

2015-08-03 Thread Jakob Kummerow
It appears that the file is now called libv8_external_snapshot.a. The Getting-Started doc needs updating. On Mon, Aug 3, 2015 at 9:53 AM, Michael Hablich habl...@chromium.org wrote: Which V8 version are you trying to build? 4.3? On Monday, August 3, 2015 at 1:34:52 AM UTC+2, Jerrad Patch

[v8-users] Getting started tutorial problems

2015-08-02 Thread Jerrad Patch
Hey all I followed the getting started tutorial here https://developers.google.com/v8/get_started?hl=en I downloaded the source and compiled it exactly like instructed, make x64.release then I tried I copy pasted the given example (from getting started) to my text editor and tried to compile

Re: [v8-users] Getting started tutorial problems

2015-08-02 Thread Ben Noordhuis
On Sun, Aug 2, 2015 at 10:06 PM, Jerrad Patch jerradpa...@gmail.com wrote: Hey all I followed the getting started tutorial here https://developers.google.com/v8/get_started?hl=en I downloaded the source and compiled it exactly like instructed, make x64.release then I tried I copy pasted

Re: [v8-users] Getting started tutorial problems

2015-08-02 Thread Ben Noordhuis
On Sun, Aug 2, 2015 at 11:48 PM, Jerrad Patch jerradpa...@gmail.com 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

Re: [v8-users] Getting started tutorial problems

2015-08-02 Thread Jerrad Patch
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

Re: [v8-users] Getting started tutorial problems

2015-08-02 Thread Jerrad Patch
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