> >> I'm writing an extension called "V8PHP". It's similar to the V8JS extension, >> but the implementation is quite different. >> >> ... >> >> Anyone know what the problem could be? >> >> Luke > > I figured out that v8 was being compiled in 32 bit mode... Apparently it > thinks "native" means 32 bit... Recompiled as 64 bit and now I'm getting this: > > PHP Warning: PHP Startup: Unable to load dynamic library > '/phpdev/lib/php/extensions/debug-zts-20090626/v8php.so' - > dlopen(/phpdev/lib/php/extensions/debug-zts-20090626/v8php.so, 9): Symbol not > found: __ZN2v88internal8Snapshot13context_size_E > Referenced from: /phpdev/lib/php/extensions/debug-zts-20090626/v8php.so > Expected in: flat namespace > in /phpdev/lib/php/extensions/debug-zts-20090626/v8php.so in Unknown on line > 0 > > > Luke
Figured this out as well. I wasn't building the shared library for some reason... Luke