Re: [v8-users] Undefined reference to v8::platform::NewDefaultPlatform

2018-01-02 Thread Zac Hansen
The problem is that when you *compile* with libstdc++ when building against the v8 external API header, it generates object files looking for symbols with the libstdc++ names. At that point there's no winning because you have v8 libs which need libc++ and your object files which need libstdc++.

Re: [v8-users] Undefined reference to v8::platform::NewDefaultPlatform

2018-01-02 Thread Bogdan Padalko
Indeed. By "relocation" I mean that it was built using one stdlib and moved to the system with another one, but I agree that it's more correct to name as stdlib issue rather then relocation issue. I tried to link with libc++.so that generated by v8 build, though, no luck with it for some