I am trying to read a javascript function written in a file and retrieve
it using the following code and convert it to a script .But i am getting
conversion error
The code I'm using is
std::ifstream file("sum.js");
std::string str;
std::string file_contents;
while (std::getline(file, str))
{
f
Hi,
I am trying to instrument the v8 source code with callable functions
defined in a separate (external library).
Specifically, I am inserting these instrumentation function calls in
./src/ic/arm/ic-arm.cc
Is the main Makefile (v8/Makefile) the best place to include a link against
my external
Hello everyone,
I'm currently trying to build V8 as a static library for Android. I was
able to build for the ARM architecture using this patch:
http://stackoverflow.com/questions/24279237/android-ndk-linking-v8-static-library-cannot-find-symbols-but-they-are-there.
However, when I build for x
I am new to v8.
I am trying to execute a JavaScript function written in an external file.I
am trying to call the function through another java script function written
in v8 and pass the argument from the main program.But i have no clue how to
retrieve the function like a script. we are only ab