You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if you do:
gn gen out/ios --args='target_os="ios"
target_environment="device"
target_cpu="arm64"
rtc_enable_symbol_export=true
rtc_enable_objc_symbol_export=true
is_component_build=false
is_debug=false
enable_dsyms=true
rtc_include_tests=false
ios_enable_code_signing=false
proprietary_codecs=true
rtc_use_h264=true
use_custom_libcxx=false
ios_deployment_target="13.0"'
ninja -C out/ios webrtc
The result libwebrtc.a is not include sdk/objc symbols. you need to modify src->build.gn file:
then find: rtc_static_library("webrtc") , in the deps , add the following options:
if you do:
gn gen out/ios --args='target_os="ios"
target_environment="device"
target_cpu="arm64"
rtc_enable_symbol_export=true
rtc_enable_objc_symbol_export=true
is_component_build=false
is_debug=false
enable_dsyms=true
rtc_include_tests=false
ios_enable_code_signing=false
proprietary_codecs=true
rtc_use_h264=true
use_custom_libcxx=false
ios_deployment_target="13.0"'
ninja -C out/ios webrtc
The result libwebrtc.a is not include sdk/objc symbols. you need to modify src->build.gn file:
then find: rtc_static_library("webrtc") , in the deps , add the following options:
rebuild it. you can got a complete libwebrtc.a
The text was updated successfully, but these errors were encountered: