I've compiled v8 without much trouble, but when I go to compile the "hello_world.cpp" example, I get a load of errors, that look like something important was missed when I compiled v8...
C:\Documents and Settings\Timothy Sassone\My Documents\Downloads \v8>cl /Iinclude v8.lib hello_world.cpp Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 15.00.30729.01 for 80x86 Copyright (C) Microsoft Corporation. All rights reserved. hello_world.cpp hello_world.cpp(4) : error C2065: 'String' : undeclared identifier hello_world.cpp(4) : error C2146: syntax error : missing ';' before identifier 'source' hello_world.cpp(4) : error C2065: 'source' : undeclared identifier hello_world.cpp(4) : error C2653: 'String' : is not a class or namespace name hello_world.cpp(4) : error C3861: 'New': identifier not found hello_world.cpp(7) : error C2065: 'Script' : undeclared identifier hello_world.cpp(7) : error C2146: syntax error : missing ';' before identifier 'script' It goes on like this for about 15+ more lines. Any idea where I screwed up? From what little experience I have, it looks like something was left out when I compiled the v8 library, although I followed the directions from the "Building on Windows" page to the letter... Thank you for your time, Timothy Sassone -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
