On Thu, Oct 6, 2011 at 4:31 PM, Michael Schwartz <[email protected]> wrote:
> Ideally you shouldn't have to static link with libv8.a at all. I bet there > are gcc/ld flags that would allow all to be .so. > In fact, libv8.a won't compile warning-free on Linux because v8 uses networking libs which cannot link statically on Linux. gcc will warn about that this and tell you that at runtime it will use the DLL versions for those symbols. This is caused by code used in the PosixSocket class in v8. -- ----- stephan beal http://wanderinghorse.net/home/stephan/ -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
