Hi Søren, This is just a complete guess.
Part of the error is: src/jsregexp.cc:484: error: no matching function for call to 'v8::internal::Vector<long int>::Vector(int*, int)' src/utils.h:318: note: candidates are: v8::internal::Vector<T>::Vector(T*, int) [with T = long int] <near match> I'm guessing that means this does exist: v8::internal::Vector<long int>::Vector(long int*, int) But this doesn't exist: 'v8::internal::Vector<long int>::Vector(int*, int)' So, is there any way to make: long int registers.vector() Instead of: int registers.vector() ? Or perhaps use: v8::internal::Vector<int>::Vector(int*, int) Instead of: v8::internal::Vector<long int>::Vector(int*, int) ? Thank you, pikpik -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
