How to build dynamic (shared) libraries of crashpad?

后端 未结 4 2103
说谎
说谎 2021-01-14 10:36

Crashpad is an error reporting system for c++ apps. https://chromium.googlesource.com/crashpad/crashpad/+/HEAD/doc/developing.md

build instructions are



        
4条回答
  •  星月不相逢
    2021-01-14 11:19

    @bobbyg603's answer is almost what I needed.

    But as usual things are not written by hand but embedded in a script, so opening up an editor to change things is oftentimes not really useful at all. Programmatically, you can also use:

    gn gen out\Default --args="extra_cflags=\"/MD\""
    

    This will also change the arguments for cxx by the way.

提交回复
热议问题