webrtc在mac下的编译命令

1 cd到src目录

2 gn gen out/mac_x64_debug --args='

target_os="mac" target_cpu="x64" use_rtti=true is_debug=true is_component_build=false rtc_use_h264=true' --ide=xcode

3 ninja -C out/mac_x64_debug

以上命令最后将在out/mac_x64_debug/obj下生成libwebrtc.a文件,即静态库一个。

注意:

use_rtti=true:编译时启用运行时类型信息功能,默认是false,如果为false,那么在我们的测试程序中去集成libwebrtc.a时就会产生连接错误,"typeinfo for rtc::MessageHandler", referenced from:typeinfo for xxxx

 

 

你可能感兴趣的:(webrtc)