On Sun, Aug 28, 2022 at 6:20 PM 'Robert Moeller' via v8-dev <[email protected]> wrote: > > Hi everyone! I work under Windows. Can I obtain somewhere a bit of > information how to compile v8 into static or (and) dynamic library in order > to embed them in my application?
I don't develop on Windows but I believe it works the same. You pass the following options to tools/dev/gm.py: 1. v8_monolithic=true - build one big library (not strictly necessary but more convenient than myriads of small libraries) 2. is_component_build=true - build a shared library More info on building here: https://v8.dev/docs/build-gn -- -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev --- You received this message because you are subscribed to the Google Groups "v8-dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/v8-dev/CAHQurc92%2BoqU2yv1J0MN40PPdsisKxan-qyTBELMw69TLBs4Tg%40mail.gmail.com.
