On Thu, Jan 10, 2013 at 10:37 PM, Joe Millenbach <[email protected]>wrote:
> platform-posix.cc:(.text._ZN2v88internal11POSIXSocket7ConnectEPKcS3_+0x8d): > warning: Using 'getaddrinfo' in statically linked applications > requires at runtime the shared libraries from the glibc version used > for linking > That's the "networking libraries problem" i vaguely mentioned above. You _can_ link statically to them but it won't be a true static link - at runtime the app will still (perhaps indirectly) need the networking DLL(s). When static linking of v8 broke for me (way back when) due to this problem i thought, "WTF are they using networking code for?" It turns out that it's only used in the debugger (or was at the time). Maybe (not sure) it's possible to build without that component, and therefore without the networking requirement. -- ----- stephan beal http://wanderinghorse.net/home/stephan/ http://gplus.to/sgbeal -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
