On Sat, Apr 28, 2018 at 10:39 AM, Liam Dawson <dawmail...@gmail.com> wrote: > When following the instructions at > https://github.com/v8/v8/wiki/Getting%20Started%20with%20Embedding (version > 6.6.346.24), I run this command: > > g++ -I. -Iinclude samples/hello-world.cc -o hello-world -Wl,--start-group \ > out.gn/x64.release/obj/{libv8_{base,libbase,external_snapshot,libplatform,libsampler},\ > third_party/icu/libicu{uc,i18n},src/inspector/libinspector}.a \ > -Wl,--end-group -lrt -ldl -pthread -std=c++0x > > and it fails with over 1300 lines out output, which I've attached. (lots of > references to things like std::__1::__next_prime) > > I'm assuming I'm missing something I need to link against?
Going by the symbol names, it looks like V8 was built against libc++ but you're now trying to link it against libstdc++. V8 normally builds against libc++. -- -- v8-users mailing list v8-users@googlegroups.com http://groups.google.com/group/v8-users --- You received this message because you are subscribed to the Google Groups "v8-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to v8-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.