summaryrefslogtreecommitdiff
path: root/indra/llwebrtc/llwebrtc.cpp
AgeCommit message (Collapse)Author
25 hoursMerge tag 'Second_Life_Release#a4aa523-26.4' into 26.4Erik Kundiman
26 hoursMerge remote-tracking branch 'secondlife/release/26.4' into 26.4Erik Kundiman
3 days#6228 fix setting the default device after a region changeMaxim Nikolenko
Patch contributed by TJ Hecklezz
11 days#6109 StopRecording() crashAndrey Kleshchev
12 days#6167 fix WebRTC logging levelMaxim Nikolenko
2026-08-21#6123 Fix worker thread crash on terminationAndrey Kleshchev
2026-08-12p#682 Fix shutdown crash and cut WebRTC teardown timeRoxie Linden
terminate() released the thread unique_ptrs on the timeout path while the detached shutdown thread was still running the lambda that reads them, so a slow shutdown became a null deref at the next BlockingCall. Leave the members alone and report the timeout instead, so the caller leaks this object rather than deleting it out from under the detached thread. Reduce how often that timeout is reached at all: - Post the audio device stop instead of blocking on it. StopRecording and StopPlayout each wait up to 2s on a WASAPI thread, spending much of the 10s budget before the connections were touched. The device stop has to stay on the worker thread (AudioDeviceBuffer is guarded by a sequence checker bound to it), but the queue is FIFO, so ForceTerminate still runs after it while the signaling close gets on with its network-thread work. - Drain the peer connections in LLWebRTCVoiceClient::terminate() before handing off to llwebrtc::terminate(), bounded to 3s. An estate session can hold ten live connections -- the current region plus up to eight neighbours -- and closing them inline and serially under the shutdown budget is what made it tight. Draining also quiets the stats poll, so PeerConnection::Close() no longer blocks in WaitForPendingRequest() on an in-flight GetStats. Connections reaped by the drain are destroyed while webrtc is still fully alive, so they must unregister and release their peer connections normally; key the destructor's early-out off a new sWebRTCTerminated instead of isShuttingDown(). Notify signaling observers even when there was no peer connection to close, or a connection shut down before it finished initializing parks in VOICE_STATE_WAIT_FOR_CLOSE, which has no timeout of its own. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-08Merge tag 'Second_Life_Release#932e8ac3-26.3' into 26.3Erik Kundiman
2026-08-07Merge tag 'Second_Life_Release#0686467f-26.3' into 26.3Erik Kundiman
2026-08-06p#682 Fix shutdown crash flushing peer connection statsRoxie Linden
LLWebRTCImpl::terminate() only posted the peer connection closes to the signaling thread, so they ran behind the BlockingCall that releases the factory -- after the factory and device module were gone, or not at all if the thread was destroyed with the task still queued. That matters for stats: PeerConnection::Close() flushes any in-flight GetStats request and delivers the report inline, and our callback walks mSignalingObserverList to hand it to the viewer. By then the viewer's LLVoiceWebRTCConnection objects have been destroyed -- on shutdown they deliberately skip unsetSignalingObserver, on the assumption that llwebrtc::terminate() already finished the job -- so the stats callback reaches into freed memory. Split the close out of LLWebRTCPeerConnectionImpl::terminate() into closeOnSignalingThread() and run it from a BlockingCall, so connections are closed and destroyed on the signaling thread before the factory, the device module or the observers go away. Also take ownership of the connection list up front so the detached thread in the timeout path isn't racing the main thread over it, clear the observer lists as part of the close, and skip the observer notification for a stats report delivered while shutting down. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
2026-08-06Terminate open connections on the signaling thread during shutdown.Roxie Linden
2026-08-06p#682 WebRTC can lock up after OS sleepAndrey Kleshchev
2026-08-04p#682 Improve logging for system events and session (#6086)Andrey Kleshchev
2026-07-24Merge tag 'Second_Life_Release#bcfda3b6-26.3' into 26.3Erik Kundiman
2026-07-20Use communications devices/scheme to get system audio processingRoxie Linden
2026-07-10Merge tag 'Second_Life_Release#a937b237-26.3' into 26.3Erik Kundiman
For Linux x86-64, we use LL's binary again, no more linking problem. For Linux aarch64, we still use Crow Misia's, and I tried to use the version in parity with SLv, which is m144. But since m140, CM binaries have been compiled without use_custom_libcxx=false, and that seems to cause these linking errors: [1/687] Linking CXX shared library llwebrtc/libllwebrtc.so FAILED: [code=1] llwebrtc/libllwebrtc.so : && /usr/lib64/ccache/c++ -fPIC -O3 -std=c++20 -fPIC -DLL_LINUX=1 -O3 -DNDEBUG -shared -Wl,--no-keep-memory -Wl,--build-id -Wl,--no-undefined -Wl,--dependency-file=llwebrtc/CMakeFiles/llwebrtc.dir/link.d -Wl,-soname,libllwebrtc.so -o llwebrtc/libllwebrtc.so llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o -L/home/erik/Documents/Megapahit/viewer/build-linux-aarch64/packages/lib/release -Wl,-rpath,/usr/lib64/megapahit packages/lib/release/libwebrtc.a -lX11 && cd /home/erik/Documents/Megapahit/viewer/build-linux-aarch64/llwebrtc && /usr/bin/cmake -E copy_if_different /home/erik/Documents/Megapahit/viewer/build-linux-aarch64/llwebrtc/libllwebrtc.so /home/erik/Documents/Megapahit/viewer/build-linux-aarch64/sharedlibs/lib && cd /home/erik/Documents/Megapahit/viewer/build-linux-aarch64/llwebrtc && /usr/bin/strip libllwebrtc.so /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(checks.o): in function `webrtc::webrtc_checks_impl::ParseArg(std::__va_list*, webrtc::webrtc_checks_impl::CheckArgType const**, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': checks.cc:(.text+0x1c0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: checks.cc:(.text+0x3b0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: checks.cc:(.text+0x41c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(checks.o): in function `(anonymous namespace)::AppendFormat(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, char const*, ...)': checks.cc:(.text+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(checks.o): in function `webrtc::webrtc_checks_impl::FatalLog(char const*, int, char const*, webrtc::webrtc_checks_impl::CheckArgType const*, ...)': checks.cc:(.text+0x158): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(checks.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__grow_by(unsigned long, unsigned long, unsigned long, unsigned long, unsigned long, unsigned long)': checks.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEmmmmmm]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: checks.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE9__grow_byEmmmmmm]+0x194): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats.o): in function `webrtc::RTCStats::RTCStats(webrtc::RTCStats const&)': rtc_stats.cc:(.text+0x48): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats.o): in function `webrtc::RTCStats::operator==(webrtc::RTCStats const&) const': rtc_stats.cc:(.text+0x298): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x2b8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats.o): in function `webrtc::RTCStats::ToJson() const': rtc_stats.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0xb0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats.o):rtc_stats.cc:(.text+0xec): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats.o): in function `webrtc::RTCStats::ToJson() const': rtc_stats.cc:(.text+0x2a8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x2c8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats.cc:(.text+0x30c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::AudioProcessingImpl(webrtc::Environment const&, webrtc::AudioProcessing::Config const&, std::__Cr::optional<webrtc::EchoCanceller3Config>, std::__Cr::optional<webrtc::EchoCanceller3Config>, std::__Cr::unique_ptr<webrtc::CustomProcessing, std::__Cr::default_delete<webrtc::CustomProcessing> >, std::__Cr::unique_ptr<webrtc::CustomProcessing, std::__Cr::default_delete<webrtc::CustomProcessing> >, std::__Cr::unique_ptr<webrtc::EchoControlFactory, std::__Cr::default_delete<webrtc::EchoControlFactory> >, webrtc::scoped_refptr<webrtc::EchoDetector>, std::__Cr::unique_ptr<webrtc::CustomAudioAnalyzer, std::__Cr::default_delete<webrtc::CustomAudioAnalyzer> >, std::__Cr::unique_ptr<webrtc::NeuralResidualEchoEstimator, std::__Cr::default_delete<webrtc::NeuralResidualEchoEstimator> >)': audio_processing_impl.cc:(.text+0x86c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::~AudioProcessingImpl()': audio_processing_impl.cc:(.text+0x588): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::AllocateRenderQueue()': audio_processing_impl.cc:(.text+0x3dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0x40c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o):audio_processing_impl.cc:(.text+0x308): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::WriteAecDumpConfigMessage(bool)': audio_processing_impl.cc:(.text+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0xbc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0xd8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0x218): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: audio_processing_impl.cc:(.text+0x228): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `std::__Cr::unique_ptr<webrtc::PostFilter, std::__Cr::default_delete<webrtc::PostFilter> >::reset(webrtc::PostFilter*)': audio_processing_impl.cc:(.text[_ZNSt4__Cr10unique_ptrIN6webrtc10PostFilterENS_14default_deleteIS2_EEE5resetEPS2_]+0xb8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::ApmStatsReporter::ApmStatsReporter()': audio_processing_impl.cc:(.text+0x90): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::ApmStatsReporter::~ApmStatsReporter()': audio_processing_impl.cc:(.text+0x84): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `webrtc::AudioProcessingImpl::ApmStatsReporter::GetStatistics()': audio_processing_impl.cc:(.text+0x14c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o): in function `std::__Cr::__wrap_iter<float*> std::__Cr::vector<float, std::__Cr::allocator<float> >::__insert_with_size<std::__Cr::_ClassicAlgPolicy, float const*, float const*>(std::__Cr::__wrap_iter<float const*>, float const*, float const*, long)': audio_processing_impl.cc:(.text[_ZNSt4__Cr6vectorIfNS_9allocatorIfEEE18__insert_with_sizeINS_17_ClassicAlgPolicyEPKfS7_EENS_11__wrap_iterIPfEENS8_IS7_EET0_T1_l]+0x3d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_processing_impl.o):audio_processing_impl.cc:(.text[_ZNKSt4__Cr14default_deleteIN6webrtc9SwapQueueINS_6vectorIsNS_9allocatorIsEEEENS1_23RenderQueueItemVerifierIsEEEEEclEPS9_]+0x104): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `void google::protobuf::internal::InternalMetadata::DoMergeFrom<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': message_lite.cc:(.text+0x48): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `google::protobuf::internal::OnShutdownRun(void (*)(void const*), void const*)': message_lite.cc:(.text+0xc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `google::protobuf::ShutdownProtobufLibrary()': message_lite.cc:(.text+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <49>(char const (&) [49])': message_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi49EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <155>(char const (&) [155])': message_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi155EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <2>(char const (&) [2])': message_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi2EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_lite.o):message_lite.cc:(.text[_ZZNSt4__Cr6vectorINS_4pairIPFvPKvES3_EENS_9allocatorIS6_EEE12emplace_backIJS6_EEERS6_DpOT_ENKUlvE0_clEv]+0xf0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <short>(short const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIsEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(short)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <unsigned short>(unsigned short const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsItEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned short)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <int>(int const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIiEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <unsigned int>(unsigned int const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIjEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <long>(long const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIlEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <unsigned long>(unsigned long const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsImEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <long long>(long long const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIxEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <unsigned long long>(unsigned long long const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIyEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <void*>(void* const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPvEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <void const*>(void const* const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPKvEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <float>(float const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIfEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(float)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <double>(double const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIdEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(double)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <bool>(bool const&)': log_message.cc:(.text[_ZN4absl12log_internal10LogMessagelsIbEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(bool)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::LogMessageData::LogMessageData(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, absl::LogSeverity, absl::Time)': log_message.cc:(.text+0x28): undefined reference to `vtable for std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x70): undefined reference to `vtable for std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x8c): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: log_message.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::LogMessageData::FinalizeEncodingAndFormat()': log_message.cc:(.text+0x1d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: log_message.cc:(.text+0x240): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: log_message.cc:(.text+0x258): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::LogMessage(char const*, int, absl::LogSeverity)': log_message.cc:(.text.unlikely.+0x68): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `std::__Cr::unique_ptr<absl::log_internal::LogMessage::LogMessageData, std::__Cr::default_delete<absl::log_internal::LogMessage::LogMessageData> >::~unique_ptr()': log_message.cc:(.text[_ZNSt4__Cr10unique_ptrIN4absl12log_internal10LogMessage14LogMessageDataENS_14default_deleteIS4_EEED2Ev]+0x20): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::AtLocation(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int)': log_message.cc:(.text+0xac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::ToSinkAlso(absl::LogSink*)': log_message.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: log_message.cc:(.text+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::ToSinkOnly(absl::LogSink*)': log_message.cc:(.text+0xd4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: log_message.cc:(.text+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::Flush()': log_message.cc:(.text+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: log_message.cc:(.text+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::OstreamView::OstreamView(absl::log_internal::LogMessage::LogMessageData&)': log_message.cc:(.text+0x14): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x20): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x2c): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: log_message.cc:(.text+0xf4): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: log_message.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::OstreamView::~OstreamView()': log_message.cc:(.text+0x34): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: log_message.cc:(.text+0x110): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x114): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: log_message.cc:(.text+0x134): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::LogMessage::PrepareToDie()': log_message.cc:(.text+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::log_internal::(anonymous namespace)::WriteToString(char const*, void*)': log_message.cc:(.text+0x38): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: log_message.cc:(.text+0x4c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o): in function `absl::LogSink*& absl::inlined_vector_internal::Storage<absl::LogSink*, 16ul, std::__Cr::allocator<absl::LogSink*> >::EmplaceBackSlow<absl::LogSink* const&>(absl::LogSink* const&)': log_message.cc:(.text[_ZN4absl23inlined_vector_internal7StorageIPNS_7LogSinkELm16ENSt4__Cr9allocatorIS3_EEE15EmplaceBackSlowIJRKS3_EEERS3_DpOT_]+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x20): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::imbue(std::__Cr::locale const&)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x28): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::setbuf(char*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x30): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::seekoff(long long, std::__Cr::ios_base::seekdir, unsigned int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x38): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::seekpos(std::__Cr::fpos<__mbstate_t>, unsigned int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x40): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::sync()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x48): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::showmanyc()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x50): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::xsgetn(char*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x58): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::underflow()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x60): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::uflow()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x68): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::pbackfail(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x70): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::xsputn(char const*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x78): undefined reference to `std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >::overflow(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_message.o):(.data.rel.ro+0x10): undefined reference to `typeinfo for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_pcm.o): in function `webrtc::AudioEncoderPcm::EncodeImpl(unsigned int, webrtc::ArrayView<short const, -4711l>, webrtc::BufferT<unsigned char, false>*)': audio_encoder_pcm.cc:(.text+0x1dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_encoder_pcm.cc:(.text+0x228): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_pcm.o): in function `webrtc::AudioEncoderPcm::Reset()': audio_encoder_pcm.cc:(.text+0x80): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_pcm.o): in function `webrtc::AudioEncoderPcmA::~AudioEncoderPcmA()': audio_encoder_pcm.cc:(.text[_ZN6webrtc16AudioEncoderPcmAD0Ev]+0x98): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_pcm.o): in function `webrtc::AudioEncoderPcm::~AudioEncoderPcm()': audio_encoder_pcm.cc:(.text+0x98): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_pcm.o):audio_encoder_pcm.cc:(.text[_ZN6webrtc16AudioEncoderPcmUD0Ev]+0x98): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_internal.o): in function `absl::cord_internal::LogFatalNodeType(absl::cord_internal::CordRep*)': cord_internal.cc:(.text.unlikely.+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_internal.o): in function `absl::AlphaNum::AlphaNum(int)': cord_internal.cc:(.text[_ZN4absl8AlphaNumC2Ei]+0x5c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord_internal.cc:(.text[_ZN4absl8AlphaNumC2Ei]+0x70): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_message_tctable_lite.o): in function `google::protobuf::internal::TcParser::MessageName(google::protobuf::internal::TcParseTableBase const*)': generated_message_tctable_lite.cc:(.text+0x54): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_message_tctable_lite.o): in function `google::protobuf::internal::TcParser::FieldName(google::protobuf::internal::TcParseTableBase const*, google::protobuf::internal::TcParseTableBase::FieldEntry const*)': generated_message_tctable_lite.cc:(.text+0x264): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_message_tctable_lite.o): in function `google::protobuf::internal::TcParser::ReportFastUtf8Error(unsigned int, google::protobuf::internal::TcParseTableBase const*)': generated_message_tctable_lite.cc:(.text+0x2c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_message_tctable_lite.o):generated_message_tctable_lite.cc:(.text+0x248): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(coded_stream.o): in function `google::protobuf::io::CodedInputStream::ReadStringFallback(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, int)': coded_stream.cc:(.text+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: coded_stream.cc:(.text+0xc0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: coded_stream.cc:(.text+0x108): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(coded_stream.o): in function `google::protobuf::io::CodedInputStream::ReadCord(absl::Cord*, int)': coded_stream.cc:(.text+0x1b0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: coded_stream.cc:(.text+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream.o): in function `google::protobuf::io::ZeroCopyOutputStream::WriteCord(absl::Cord const&)': zero_copy_stream.cc:(.text+0x1ec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <123>(char const (&) [123])': zero_copy_stream.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi123EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(repeated_field.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <8>(char const (&) [8])': repeated_field.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi8EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(repeated_field.o):repeated_field.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi9EEERS1_RAT__Kc]+0x58): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::FieldTrialParameter(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >)': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC5ENS1_17basic_string_viewIcS4_EES7_]+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::Get() const': field_trial_parser.cc:(.text[_ZNK6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE3GetEv]+0x28): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::operator std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >() const': field_trial_parser.cc:(.text[_ZNK6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEcvS7_Ev]+0x28): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::SetForTest(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >)': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE10SetForTestES7_]+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE10SetForTestES7_]+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::Parse(std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >)': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x134): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x144): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x190): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x1a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > webrtc::ParseTypedParameter<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': field_trial_parser.cc:(.text+0xec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialOptional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::FieldTrialOptional(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >)': field_trial_parser.cc:(.text[_ZN6webrtc18FieldTrialOptionalINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEEC5ENS1_17basic_string_viewIcS4_EENS1_8optionalIS7_EE]+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialOptional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::GetOptional() const': field_trial_parser.cc:(.text[_ZNK6webrtc18FieldTrialOptionalINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetOptionalEv]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZNK6webrtc18FieldTrialOptionalINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE11GetOptionalEv]+0x7c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialOptional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >::Parse(std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >)': field_trial_parser.cc:(.text[_ZN6webrtc18FieldTrialOptionalINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZN6webrtc18FieldTrialOptionalINSt4__Cr12basic_stringIcNS1_11char_traitsIcEENS1_9allocatorIcEEEEE5ParseENS1_8optionalIS7_EE]+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `_ZNSt4__Cr8optionalINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEaSIRS6_TnNS_9enable_ifIXsr4_AndINS_17integral_constantIbXntu9__is_sameu14__remove_cvrefIT_ES7_EEEENS_7_OrImplIXaantcvbsr10_IsNotSameISD_S6_EE5valuenesZT1_Li0EEE7_ResultINSB_IbXntu9__is_sameSD_S6_EEEENS_4_NotINS_9is_scalarIS6_EEEEEENS_16is_constructibleIS6_JSC_EEENS_13is_assignableIS9_SC_EEEE5valueEiE4typeELi0EEERS7_OSC_': field_trial_parser.cc:(.text[_ZNSt4__Cr8optionalINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEaSIRS6_TnNS_9enable_ifIXsr4_AndINS_17integral_constantIbXntu9__is_sameu14__remove_cvrefIT_ES7_EEEENS_7_OrImplIXaantcvbsr10_IsNotSameISD_S6_EE5valuenesZT1_Li0EEE7_ResultINSB_IbXntu9__is_sameSD_S6_EEEENS_4_NotINS_9is_scalarIS6_EEEEEENS_16is_constructibleIS6_JSC_EEENS_13is_assignableIS9_SC_EEEE5valueEiE4typeELi0EEERS7_OSC_]+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZNSt4__Cr8optionalINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEaSIRS6_TnNS_9enable_ifIXsr4_AndINS_17integral_constantIbXntu9__is_sameu14__remove_cvrefIT_ES7_EEEENS_7_OrImplIXaantcvbsr10_IsNotSameISD_S6_EE5valuenesZT1_Li0EEE7_ResultINSB_IbXntu9__is_sameSD_S6_EEEENS_4_NotINS_9is_scalarIS6_EEEEEENS_16is_constructibleIS6_JSC_EEENS_13is_assignableIS9_SC_EEEE5valueEiE4typeELi0EEERS7_OSC_]+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZNSt4__Cr8optionalINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEaSIRS6_TnNS_9enable_ifIXsr4_AndINS_17integral_constantIbXntu9__is_sameu14__remove_cvrefIT_ES7_EEEENS_7_OrImplIXaantcvbsr10_IsNotSameISD_S6_EE5valuenesZT1_Li0EEE7_ResultINSB_IbXntu9__is_sameSD_S6_EEEENS_4_NotINS_9is_scalarIS6_EEEEEENS_16is_constructibleIS6_JSC_EEENS_13is_assignableIS9_SC_EEEE5valueEiE4typeELi0EEERS7_OSC_]+0xc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZNSt4__Cr8optionalINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEEaSIRS6_TnNS_9enable_ifIXsr4_AndINS_17integral_constantIbXntu9__is_sameu14__remove_cvrefIT_ES7_EEEENS_7_OrImplIXaantcvbsr10_IsNotSameISD_S6_EE5valuenesZT1_Li0EEE7_ResultINSB_IbXntu9__is_sameSD_S6_EEEENS_4_NotINS_9is_scalarIS6_EEEEEENS_16is_constructibleIS6_JSC_EEENS_13is_assignableIS9_SC_EEEE5valueEiE4typeELi0EEERS7_OSC_]+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::ParseFieldTrial(std::initializer_list<webrtc::FieldTrialParameterInterface*>, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': field_trial_parser.cc:(.text+0x4dc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text+0x4ec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text+0x6b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text+0x6c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text+0x6dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::AbstractFieldTrialEnum::AbstractFieldTrialEnum(webrtc::AbstractFieldTrialEnum const&)': field_trial_parser.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::AbstractFieldTrialEnum::~AbstractFieldTrialEnum()': field_trial_parser.cc:(.text+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialFlag::~FieldTrialFlag()': field_trial_parser.cc:(.text[_ZN6webrtc14FieldTrialFlagD0Ev]+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<bool>::~FieldTrialParameter()': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterIbED0Ev]+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<double>::~FieldTrialParameter()': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterIdED0Ev]+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `webrtc::FieldTrialParameter<int>::~FieldTrialParameter()': field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterIiED0Ev]+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o):field_trial_parser.cc:(.text[_ZN6webrtc19FieldTrialParameterIjED0Ev]+0xbc): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, void*>* std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> > >::__construct_from_tree<std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> > >::__copy_construct_tree(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, void*>*)::{lambda(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> const&)#1}>(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, void*>*, std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> > >::__copy_construct_tree(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, void*>*)::{lambda(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> const&)#1})': field_trial_parser.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiEENS_19__map_value_compareIS7_NS_4pairIKS7_iEENS_4lessIS7_EEEENS5_ISC_EEE21__construct_from_treeIZNSH_21__copy_construct_treeEPNS_11__tree_nodeIS8_PvEEEUlRKSC_E_EESM_SM_T_]+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: field_trial_parser.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiEENS_19__map_value_compareIS7_NS_4pairIKS7_iEENS_4lessIS7_EEEENS5_ISC_EEE21__construct_from_treeIZNSH_21__copy_construct_treeEPNS_11__tree_nodeIS8_PvEEEUlRKSC_E_EESM_SM_T_]+0xe4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, int> > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, int>, void*>*)': field_trial_parser.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEiEENS_19__map_value_compareIS7_NS_4pairIKS7_iEENS_4lessIS7_EEEENS5_ISC_EEE14__tree_deleterclEPNS_11__tree_nodeIS8_PvEE]+0x84): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::FieldTrialParameterInterface*>, std::__Cr::__map_value_compare<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::pair<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const, webrtc::FieldTrialParameterInterface*>, std::__Cr::less<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const, webrtc::FieldTrialParameterInterface*> > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::FieldTrialParameterInterface*>, void*>*)': field_trial_parser.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEPN6webrtc28FieldTrialParameterInterfaceEEENS_19__map_value_compareIS5_NS_4pairIKS5_S8_EENS_4lessIS5_EEEENS_9allocatorISD_EEE14__tree_deleterclEPNS_11__tree_nodeIS9_PvEE]+0x6c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::FieldTrialParameterInterface*>, std::__Cr::__map_value_compare<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::pair<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const, webrtc::FieldTrialParameterInterface*>, std::__Cr::less<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const, webrtc::FieldTrialParameterInterface*> > >::__emplace_unique<std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&&>, std::__Cr::tuple<> >(std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&&>&&, std::__Cr::tuple<>&&)::{lambda(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&&>&&, std::__Cr::tuple<>&&)#1}::operator()(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&&>&&, std::__Cr::tuple<>&&) const': field_trial_parser.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_17basic_string_viewIcNS_11char_traitsIcEEEEPN6webrtc28FieldTrialParameterInterfaceEEENS_19__map_value_compareIS5_NS_4pairIKS5_S8_EENS_4lessIS5_EEEENS_9allocatorISD_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJOS5_EEENSO_IJEEEEEENSB_INS_15__tree_iteratorIS9_PNS_11__tree_nodeIS9_PvEElEEbEEDpOT_ENKUlRSC_SN_OSQ_OSR_E_clES12_SN_S13_S14_]+0x128): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(field_trial_parser.o): in function `_ZNSt4__Cr25__try_key_extraction_implIiNS_4pairINS_15__tree_iteratorIiPNS_11__tree_nodeIiPvEElEEbEEZNS_6__treeIiNS_4lessIiEENS_9allocatorIiEEE16__emplace_uniqueIJRKiEEES8_DpOT_EUlSH_SH_E_ZNSF_IJSH_EEES8_SK_EUlSH_E_SH_TnNS_9enable_ifIXsr7is_sameIT_u14__remove_constIu20__remove_reference_tIT3_EEEE5valueEiE4typeELi0EEET0_NS_14__priority_tagILm1EEET1_T2_OSP_': field_trial_parser.cc:(.text[_ZNSt4__Cr25__try_key_extraction_implIiNS_4pairINS_15__tree_iteratorIiPNS_11__tree_nodeIiPvEElEEbEEZNS_6__treeIiNS_4lessIiEENS_9allocatorIiEEE16__emplace_uniqueIJRKiEEES8_DpOT_EUlSH_SH_E_ZNSF_IJSH_EEES8_SK_EUlSH_E_SH_TnNS_9enable_ifIXsr7is_sameIT_u14__remove_constIu20__remove_reference_tIT3_EEEE5valueEiE4typeELi0EEET0_NS_14__priority_tagILm1EEET1_T2_OSP_]+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_if.o): in function `absl::time_internal::cctz::TimeZoneIf::Make(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': time_zone_if.cc:(.text+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::basic_string(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, unsigned long, unsigned long, std::__Cr::allocator<char> const&)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLWebRTCImpl::LLWebRTCImpl(llwebrtc::LLWebRTCLogCallback*)': llwebrtc.cpp:(.text+0x27b4): undefined reference to `webrtc::EnvironmentFactory::Set(std::unique_ptr<webrtc::TaskQueueFactory, std::default_delete<webrtc::TaskQueueFactory> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLWebRTCImpl::init()': llwebrtc.cpp:(.text+0x4018): undefined reference to `webrtc::Thread::SetName(std::basic_string_view<char, std::char_traits<char> >, void const*)' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x4078): undefined reference to `webrtc::Thread::SetName(std::basic_string_view<char, std::char_traits<char> >, void const*)' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x40d8): undefined reference to `webrtc::Thread::SetName(std::basic_string_view<char, std::char_traits<char> >, void const*)' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x44a0): undefined reference to `webrtc::CreatePeerConnectionFactory(webrtc::Thread*, webrtc::Thread*, webrtc::Thread*, webrtc::scoped_refptr<webrtc::AudioDeviceModule>, webrtc::scoped_refptr<webrtc::AudioEncoderFactory>, webrtc::scoped_refptr<webrtc::AudioDecoderFactory>, std::unique_ptr<webrtc::VideoEncoderFactory, std::default_delete<webrtc::VideoEncoderFactory> >, std::unique_ptr<webrtc::VideoDecoderFactory, std::default_delete<webrtc::VideoDecoderFactory> >, webrtc::scoped_refptr<webrtc::AudioMixer>, webrtc::scoped_refptr<webrtc::AudioProcessing>, std::unique_ptr<webrtc::AudioFrameProcessor, std::default_delete<webrtc::AudioFrameProcessor> >, std::unique_ptr<webrtc::FieldTrialsView, std::default_delete<webrtc::FieldTrialsView> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::iceCandidateToTrickleString(webrtc::IceCandidate const*)': llwebrtc.cpp:(.text+0x5de4): undefined reference to `webrtc::IPAddress::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x5e0c): undefined reference to `webrtc::SocketAddress::PortAsString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x5fbc): undefined reference to `webrtc::IPAddress::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x5ff8): undefined reference to `webrtc::SocketAddress::PortAsString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x6050): undefined reference to `webrtc::IPAddress::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x608c): undefined reference to `webrtc::SocketAddress::PortAsString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x60d4): undefined reference to `webrtc::IPAddress::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x6110): undefined reference to `webrtc::SocketAddress::PortAsString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLWebRTCPeerConnectionImpl::OnSuccess(webrtc::SessionDescriptionInterface*)': llwebrtc.cpp:(.text+0x61fc): undefined reference to `webrtc::SessionDescriptionInterface::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc.cpp:(.text+0x6644): undefined reference to `webrtc::CreateSessionDescription(webrtc::SdpType, std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLWebRTCPeerConnectionImpl::OnIceGatheringChange(webrtc::PeerConnectionInterface::IceGatheringState)': llwebrtc.cpp:(.text+0x6ad4): undefined reference to `absl::strings_internal::StringifySink::Append(std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLWebRTCPeerConnectionImpl::OnIceCandidate(webrtc::IceCandidate const*)': llwebrtc.cpp:(.text+0x6cd4): undefined reference to `webrtc::CreateIceCandidate(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, int, webrtc::Candidate const&)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `void absl::internal_any_invocable::RemoteInvoker<false, void, llwebrtc::LLWebRTCPeerConnectionImpl::AnswerAvailable(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&)::{lambda()#1}&&>(absl::internal_any_invocable::TypeErasedState*)': llwebrtc.cpp:(.text+0x7510): undefined reference to `webrtc::CreateSessionDescription(webrtc::SdpType, std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `webrtc::webrtc_logging_impl::ToStringVal webrtc::webrtc_logging_impl::MakeVal<webrtc::PeerConnectionInterface::PeerConnectionState, (void*)0>(webrtc::PeerConnectionInterface::PeerConnectionState const&)': llwebrtc.cpp:(.text._ZN6webrtc19webrtc_logging_impl7MakeValINS_23PeerConnectionInterface19PeerConnectionStateELPv0EEENS0_11ToStringValERKT_[_ZN6webrtc19webrtc_logging_impl7MakeValINS_23PeerConnectionInterface19PeerConnectionStateELPv0EEENS0_11ToStringValERKT_]+0x74): undefined reference to `absl::strings_internal::StringifySink::Append(std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `webrtc::webrtc_logging_impl::ToStringVal webrtc::webrtc_logging_impl::MakeVal<webrtc::PeerConnectionInterface::SignalingState, (void*)0>(webrtc::PeerConnectionInterface::SignalingState const&)': llwebrtc.cpp:(.text._ZN6webrtc19webrtc_logging_impl7MakeValINS_23PeerConnectionInterface14SignalingStateELPv0EEENS0_11ToStringValERKT_[_ZN6webrtc19webrtc_logging_impl7MakeValINS_23PeerConnectionInterface14SignalingStateELPv0EEENS0_11ToStringValERKT_]+0x50): undefined reference to `absl::strings_internal::StringifySink::Append(std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o: in function `llwebrtc::LLStatsCollectorCallback::OnStatsDelivered(webrtc::scoped_refptr<webrtc::RTCStatsReport const> const&)': llwebrtc.cpp:(.text._ZN8llwebrtc24LLStatsCollectorCallback16OnStatsDeliveredERKN6webrtc13scoped_refptrIKNS1_14RTCStatsReportEEE[_ZN8llwebrtc24LLStatsCollectorCallback16OnStatsDeliveredERKN6webrtc13scoped_refptrIKNS1_14RTCStatsReportEEE]+0xa8): undefined reference to `webrtc::Attribute::ToString[abi:cxx11]() const' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o:(.data.rel.ro._ZTVN8llwebrtc15LLWebRTCLogSinkE[_ZTVN8llwebrtc15LLWebRTCLogSinkE]+0x20): undefined reference to `webrtc::LogSink::OnLogMessage(std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > const&, webrtc::LoggingSeverity, char const*)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o:(.data.rel.ro._ZTVN8llwebrtc15LLWebRTCLogSinkE[_ZTVN8llwebrtc15LLWebRTCLogSinkE]+0x38): undefined reference to `webrtc::LogSink::OnLogMessage(std::basic_string_view<char, std::char_traits<char> >, webrtc::LoggingSeverity, char const*)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o:(.data.rel.ro._ZTVN8llwebrtc15LLWebRTCLogSinkE[_ZTVN8llwebrtc15LLWebRTCLogSinkE]+0x40): undefined reference to `webrtc::LogSink::OnLogMessage(std::basic_string_view<char, std::char_traits<char> >, webrtc::LoggingSeverity)' /usr/bin/ld.bfd: llwebrtc/CMakeFiles/llwebrtc.dir/llwebrtc.cpp.o:(.data.rel.ro._ZTVN8llwebrtc15LLWebRTCLogSinkE[_ZTVN8llwebrtc15LLWebRTCLogSinkE]+0x48): undefined reference to `webrtc::LogSink::OnLogMessage(std::basic_string_view<char, std::char_traits<char> >)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_error.o): in function `webrtc::RTCError::set_message(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': rtc_error.cc:(.text+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtc_error.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_error.o): in function `std::__Cr::__throw_length_error(char const*)': rtc_error.cc:(.text[_ZNSt4__Cr20__throw_length_errorEPKc]+0x18): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(builtin_audio_decoder_factory.o): in function `webrtc::audio_decoder_factory_template_impl::AudioDecoderFactoryT<webrtc::AudioDecoderOpus, webrtc::(anonymous namespace)::NotAdvertised<webrtc::AudioDecoderMultiChannelOpus>, webrtc::AudioDecoderG722, webrtc::AudioDecoderG711, webrtc::(anonymous namespace)::NotAdvertised<webrtc::AudioDecoderL16> >::IsSupportedDecoder(webrtc::SdpAudioFormat const&)': builtin_audio_decoder_factory.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(builtin_audio_decoder_factory.o): in function `webrtc::audio_decoder_factory_template_impl::AudioDecoderFactoryT<webrtc::AudioDecoderOpus, webrtc::(anonymous namespace)::NotAdvertised<webrtc::AudioDecoderMultiChannelOpus>, webrtc::AudioDecoderG722, webrtc::AudioDecoderG711, webrtc::(anonymous namespace)::NotAdvertised<webrtc::AudioDecoderL16> >::Create(webrtc::Environment const&, webrtc::SdpAudioFormat const&, std::__Cr::optional<webrtc::AudioCodecPairId>)': builtin_audio_decoder_factory.cc:(.text+0x208): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(peer_connection_interface.o): in function `webrtc::PeerConnectionInterface::IceServer::IceServer(webrtc::PeerConnectionInterface::IceServer const&)': peer_connection_interface.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: peer_connection_interface.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: peer_connection_interface.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: peer_connection_interface.cc:(.text+0xcc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(peer_connection_interface.o): in function `std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::vector(std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > const&)': peer_connection_interface.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEEC2ERKS8_]+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: peer_connection_interface.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEEC2ERKS8_]+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(peer_connection_interface.o): in function `webrtc::PeerConnectionInterface::IceServer::~IceServer()': peer_connection_interface.cc:(.text+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(peer_connection_interface.o): in function `webrtc::PeerConnectionInterface::RTCConfiguration::RTCConfiguration(webrtc::PeerConnectionInterface::RTCConfiguration const&)': peer_connection_interface.cc:(.text+0x1cc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: peer_connection_interface.cc:(.text+0x298): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(peer_connection_interface.o): in function `webrtc::PeerConnectionInterface::RTCConfiguration::~RTCConfiguration()': peer_connection_interface.cc:(.text+0x194): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::SetIP(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': socket_address.cc:(.text+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x130): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::SocketAddress(webrtc::SocketAddress const&)': socket_address.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::operator=(webrtc::SocketAddress const&)': socket_address.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::HostAsURIString() const': socket_address.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::HostAsSensitiveURIString() const': socket_address.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::PortAsString() const': socket_address.cc:(.text+0x8): undefined reference to `std::__Cr::to_string(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::basic_string<0>(char const*)': socket_address.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ILi0EEEPKc]+0xcc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: socket_address.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ILi0EEEPKc]+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: socket_address.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2ILi0EEEPKc]+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddress::FromString(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': socket_address.cc:(.text+0x2c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x2dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `webrtc::SocketAddressFromSockAddrStorage(sockaddr_storage const&, webrtc::SocketAddress*)': socket_address.cc:(.text+0x17c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: socket_address.cc:(.text+0x1c8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(socket_address.o): in function `std::__Cr::__throw_out_of_range(char const*)': socket_address.cc:(.text[_ZNSt4__Cr20__throw_out_of_rangeEPKc]+0x18): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ip_address.o): in function `webrtc::IPAddress::ToSensitiveString() const': ip_address.cc:(.text+0x378): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ip_address.o): in function `webrtc::InterfaceAddress::ToString() const': ip_address.cc:(.text+0xd0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: ip_address.cc:(.text+0x10c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(net_helpers.o): in function `webrtc::inet_pton(int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, void*)': net_helpers.cc:(.text+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: net_helpers.cc:(.text+0x130): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_builder.o): in function `webrtc::StringBuilder::AppendFormat(char const*, ...)': string_builder.cc:(.text+0x1c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_options.o): in function `webrtc::AudioOptions::operator==(webrtc::AudioOptions const&) const': audio_options.cc:(.text+0x1b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_options.o): in function `_ZNSt4__CreqIbbTnNS_9enable_ifIX23__is_core_convertible_vIDTeqclsr3stdE7declvalIRKT_EEclsr3stdE7declvalIRKT0_EEEbEEiE4typeELi0EEEbRKNS_8optionalIS2_EERKNSB_IS5_EE': audio_options.cc:(.text[_ZNSt4__CreqIbbTnNS_9enable_ifIX23__is_core_convertible_vIDTeqclsr3stdE7declvalIRKT_EEclsr3stdE7declvalIRKT0_EEEbEEiE4typeELi0EEEbRKNS_8optionalIS2_EERKNSB_IS5_EE]+0x54): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_options.o):audio_options.cc:(.text[_ZNSt4__CreqIiiTnNS_9enable_ifIX23__is_core_convertible_vIDTeqclsr3stdE7declvalIRKT_EEclsr3stdE7declvalIRKT0_EEEbEEiE4typeELi0EEEbRKNS_8optionalIS2_EERKNSB_IS5_EE]+0x54): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_options.o): in function `void std::__Cr::__optional_storage_base<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, false>::__assign_from<std::__Cr::__optional_copy_assign_base<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, false> const&>(std::__Cr::__optional_copy_assign_base<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, false> const&)': audio_options.cc:(.text[_ZNSt4__Cr23__optional_storage_baseINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEELb0EE13__assign_fromIRKNS_27__optional_copy_assign_baseIS6_Lb0EEEEEvOT_]+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: audio_options.cc:(.text[_ZNSt4__Cr23__optional_storage_baseINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEELb0EE13__assign_fromIRKNS_27__optional_copy_assign_baseIS6_Lb0EEEEEvOT_]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: audio_options.cc:(.text[_ZNSt4__Cr23__optional_storage_baseINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEELb0EE13__assign_fromIRKNS_27__optional_copy_assign_baseIS6_Lb0EEEEEvOT_]+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: audio_options.cc:(.text[_ZNSt4__Cr23__optional_storage_baseINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEELb0EE13__assign_fromIRKNS_27__optional_copy_assign_baseIS6_Lb0EEEEEvOT_]+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::ParseCandidateString(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': candidate.cc:(.text+0x7cc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: candidate.cc:(.text+0x7e8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: candidate.cc:(.text+0x7fc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: candidate.cc:(.text+0x954): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o):candidate.cc:(.text+0xd7c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::Candidate(webrtc::Candidate const&)': candidate.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x100): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o):candidate.cc:(.text+0x130): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::ToStringInternal(bool) const': candidate.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0xf0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o):candidate.cc:(.text+0x130): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::ToCandidateAttribute(bool) const': candidate.cc:(.text+0x1f0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x214): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x224): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x254): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x264): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x278): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o):candidate.cc:(.text+0x288): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::ToCandidateAttribute(bool) const': candidate.cc:(.text+0x6d0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::ComputeFoundation(webrtc::SocketAddress const&, unsigned long)': candidate.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x104): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::Assign(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': candidate.cc:(.text+0xc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text+0x2c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::RTCError::RTCError(webrtc::RTCErrorType, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': candidate.cc:(.text[_ZN6webrtc8RTCErrorC2ENS_12RTCErrorTypeENSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEE]+0xdc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: candidate.cc:(.text[_ZN6webrtc8RTCErrorC2ENS_12RTCErrorTypeENSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEE]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(candidate.o): in function `webrtc::Candidate::set_tcptype(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': candidate.cc:(.text[_ZN6webrtc9Candidate11set_tcptypeENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x10): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: candidate.cc:(.text[_ZN6webrtc9Candidate11set_tcptypeENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x30): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(crypto_random.o): in function `webrtc::CreateRandomString(unsigned long, char const*, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': crypto_random.cc:(.text+0xbc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(crypto_random.o): in function `webrtc::CreateRandomUuid()': crypto_random.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_certificate.o): in function `webrtc::RTCCertificatePEM::RTCCertificatePEM(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': rtc_certificate.cc:(.text[_ZN6webrtc17RTCCertificatePEMC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEES5_]+0x154): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtc_certificate.cc:(.text[_ZN6webrtc17RTCCertificatePEMC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEES5_]+0x168): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_identity.o): in function `webrtc::SSLIdentity::PemToDer(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': ssl_identity.cc:(.text+0x10c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x23c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x480): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x494): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_identity.o): in function `webrtc::SSLIdentity::DerToPem(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned char const*, unsigned long)': ssl_identity.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0xcc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0xdc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_identity.o):ssl_identity.cc:(.text+0xf0): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_identity.o): in function `webrtc::SSLIdentity::DerToPem(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned char const*, unsigned long)': ssl_identity.cc:(.text+0x194): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::basic_string(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, unsigned long, unsigned long, std::__Cr::allocator<char> const&)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x1b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x1dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: ssl_identity.cc:(.text+0x1f0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_identity.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > std::__Cr::__concatenate_strings<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >(std::__Cr::allocator<char> const&, std::__Cr::__type_identity<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > >::type, std::__Cr::__type_identity<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > >::type)': ssl_identity.cc:(.text[_ZNSt4__Cr21__concatenate_stringsIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS8_NS_15__type_identityINS_17basic_string_viewIS6_S7_EEE4typeESG_]+0x114): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: ssl_identity.cc:(.text[_ZNSt4__Cr21__concatenate_stringsIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EERKS8_NS_15__type_identityINS_17basic_string_viewIS6_S7_EEE4typeESG_]+0x128): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(boringssl_identity.o): in function `webrtc::BoringSSLIdentity::BoringSSLIdentity(std::__Cr::unique_ptr<webrtc::OpenSSLKeyPair, std::__Cr::default_delete<webrtc::OpenSSLKeyPair> >, std::__Cr::unique_ptr<webrtc::BoringSSLCertificate, std::__Cr::default_delete<webrtc::BoringSSLCertificate> >)': boringssl_identity.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(boringssl_identity.o):boringssl_identity.cc:(.text+0x11c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `webrtc::SessionDescriptionInterface::GetMediasectionIndex(webrtc::IceCandidate const*, unsigned long*) const': jsep.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `webrtc::(anonymous namespace)::UpdateConnectionAddress(webrtc::IceCandidateCollection const&, webrtc::MediaContentDescription*)': jsep.cc:(.text+0x210): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: jsep.cc:(.text+0x220): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `webrtc::SessionDescriptionInterface::RemoveCandidate(webrtc::IceCandidate const*)': jsep.cc:(.text+0xdc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >::__destroy_vector::operator()()': jsep.cc:(.text[_ZNSt4__Cr6vectorINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE16__destroy_vectorclEv]+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `std::__Cr::vector<webrtc::IceCandidateCollection, std::__Cr::allocator<webrtc::IceCandidateCollection> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::IceCandidateCollection, std::__Cr::allocator<webrtc::IceCandidateCollection>&, std::__Cr::__split_buffer_pointer_layout>&)': jsep.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc22IceCandidateCollectionENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: jsep.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc22IceCandidateCollectionENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0xfc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o): in function `std::__Cr::vector<webrtc::IceCandidateCollection, std::__Cr::allocator<webrtc::IceCandidateCollection> >::reserve(unsigned long)': jsep.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc22IceCandidateCollectionENS_9allocatorIS2_EEE7reserveEm]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep.o):jsep.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc22IceCandidateCollectionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x168): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `webrtc::IceCandidate::Create(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::SdpParseError*)': jsep_ice_candidate.cc:(.text+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0x15c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0x170): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `webrtc::IceCandidate::IceCandidate(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, webrtc::Candidate const&)': jsep_ice_candidate.cc:(.text+0x160): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0x174): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o):jsep_ice_candidate.cc:(.text+0x9c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `webrtc::IceCandidateCollection::HasCandidate(webrtc::IceCandidate const*) const': jsep_ice_candidate.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `webrtc::IceCandidateCollection::Clone() const': jsep_ice_candidate.cc:(.text+0xb0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text+0x18c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >::erase(std::__Cr::__wrap_iter<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > const*>)': jsep_ice_candidate.cc:(.text[_ZNSt4__Cr6vectorINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EE]+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: jsep_ice_candidate.cc:(.text[_ZNSt4__Cr6vectorINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE5eraseENS_11__wrap_iterIPKS6_EE]+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >* std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >::__emplace_back_slow_path<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > >(std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >&&)': jsep_ice_candidate.cc:(.text[_ZNSt4__Cr6vectorINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE24__emplace_back_slow_pathIJS6_EEEPS6_DpOT_]+0x110): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o): in function `std::__Cr::__split_buffer<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > >&, std::__Cr::__split_buffer_pointer_layout>::~__split_buffer()': jsep_ice_candidate.cc:(.text[_ZNSt4__Cr14__split_bufferINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEERNS_9allocatorIS6_EENS_29__split_buffer_pointer_layoutEED2Ev]+0xb8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(jsep_ice_candidate.o):jsep_ice_candidate.cc:(.text[_ZNSt4__Cr6vectorINS_10unique_ptrIN6webrtc12IceCandidateENS_14default_deleteIS3_EEEENS_9allocatorIS6_EEE18__insert_with_sizeINS_17_ClassicAlgPolicyENS_13move_iteratorINS_11__wrap_iterIPS6_EEEESG_EESF_NSD_IPKS6_EET0_T1_l]+0x474): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::SdpSerialize(webrtc::SessionDescriptionInterface const&)': webrtc_sdp.cc:(.text+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x3ec): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::SdpSerialize(webrtc::SessionDescriptionInterface const&)': webrtc_sdp.cc:(.text+0xc40): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xc54): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xcd8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xcec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::GetMediaStreamIds(webrtc::ContentInfo const*, std::__Cr::set<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >*)': webrtc_sdp.cc:(.text+0xec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0xe4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x11c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x194): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1dc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x240): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x250): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x334): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x348): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x358): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x380): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3a4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x3b4): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x3dc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x400): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x424): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x45c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x470): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x510): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x524): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x720): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x850): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x864): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x874): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x8a8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x8e0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x928): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0xad8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xda0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xdb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xdc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xdec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xe10): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0xe28): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x178c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x180c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1820): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1834): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1858): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1890): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x18b8): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x1998): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a30): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1ab4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x1aec): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildMediaDescription(webrtc::ContentInfo const*, webrtc::TransportInfo const*, webrtc::MediaType, std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> > const&, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x1e0c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1e20): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1e34): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1e50): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::SdpDeserialize(webrtc::SdpType, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x9c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1294): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x15d4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x16e4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a68): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1a7c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x23a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x243c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x245c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2470): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2484): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2INS_17basic_string_viewIcS2_EETnNS_9enable_ifIXaa35__can_be_converted_to_string_view_vIcS2_T_Entsr7is_sameIu14__remove_cvrefISA_ES5_EE5valueEiE4typeELi0EEERKSA_': webrtc_sdp.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2INS_17basic_string_viewIcS2_EETnNS_9enable_ifIXaa35__can_be_converted_to_string_view_vIcS2_T_Entsr7is_sameIu14__remove_cvrefISA_ES5_EE5valueEiE4typeELi0EEERKSA_]+0xc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2INS_17basic_string_viewIcS2_EETnNS_9enable_ifIXaa35__can_be_converted_to_string_view_vIcS2_T_Entsr7is_sameIu14__remove_cvrefISA_ES5_EE5valueEiE4typeELi0EEERKSA_]+0xd4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::__emplace_unique<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&) const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE16__emplace_uniqueIJRKS6_EEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEElEEbEEDpOT_ENKUlSD_SD_E_clESD_SD_]+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE16__emplace_uniqueIJRKS6_EEENS_4pairINS_15__tree_iteratorIS6_PNS_11__tree_nodeIS6_PvEElEEbEEDpOT_ENKUlSD_SD_E_clESD_SD_]+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::Candidate* std::__Cr::vector<webrtc::Candidate, std::__Cr::allocator<webrtc::Candidate> >::__emplace_back_slow_path<webrtc::Candidate const&>(webrtc::Candidate const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9CandidateENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9CandidateENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `bool std::__Cr::operator==<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, char const*)': webrtc_sdp.cc:(.text[_ZNSt4__CreqIcNS_11char_traitsIcEENS_9allocatorIcEEEEbRKNS_12basic_stringIT_T0_T1_EEPKS6_]+0x90): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildRtpContentAttributes(webrtc::MediaContentDescription const*, webrtc::MediaType, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xcc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xe0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x170): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildRtpContentAttributes(webrtc::MediaContentDescription const*, webrtc::MediaType, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0xe28): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xe84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xe98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xeac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xed0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xf08): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0xf2c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildRtpContentAttributes(webrtc::MediaContentDescription const*, webrtc::MediaType, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x138c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x13a0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x13f8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x140c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1420): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1448): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x145c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x1480): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::BuildRtpContentAttributes(webrtc::MediaContentDescription const*, webrtc::MediaType, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x183c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x188c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x18a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x18b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x18d4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x190c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x192c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__optional_destruct_base<std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> > const, false>::~__optional_destruct_base()': webrtc_sdp.cc:(.text[_ZNSt4__Cr24__optional_destruct_baseIKNS_6vectorIhNS_9allocatorIhEEEELb0EED2Ev]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> >::~vector()': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIhNS_9allocatorIhEEED2Ev]+0x4c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::emplace_back<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >&&)::{lambda()#2}::operator()() const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE12emplace_backIJS6_EEERS6_DpOT_ENKUlvE0_clEv]+0x124): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::AddRtcpFbLines(webrtc::Codec const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': webrtc_sdp.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xb0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xd0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x13c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<int, std::__Cr::allocator<int> >::emplace_back<int const&>(int const&)::{lambda()#2}::operator()() const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6vectorIiNS_9allocatorIiEEE12emplace_backIJRKiEEERiDpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFailedExpectLine(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned long, char, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFailedExpectFieldNum(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x94): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::HasAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': webrtc_sdp.cc:(.text+0xa8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseIceOptions(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x220): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFingerprintAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::unique_ptr<webrtc::SSLFingerprint, std::__Cr::default_delete<webrtc::SSLFingerprint> >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x300): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x350): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseDtlsSetup(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::ConnectionRole*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseExtmap(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::RtpExtension*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x298): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2dc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x484): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x4f0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> >::push_back(webrtc::RtpExtension const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE9push_backERKS2_]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE9push_backERKS2_]+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::allocator<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > > >::~vector()': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_17basic_string_viewIcNS_11char_traitsIcEEEENS_9allocatorIS4_EEED2Ev]+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFailed(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned long, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0xe0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x144): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::ContentGroup* std::__Cr::vector<webrtc::ContentGroup, std::__Cr::allocator<webrtc::ContentGroup> >::__emplace_back_slow_path<webrtc::ContentGroup const&>(webrtc::ContentGroup const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12ContentGroupENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12ContentGroupENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFailedGetValue(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >* std::__Cr::construct_at<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr12construct_atINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEJRNS_17basic_string_viewIcS3_EEEPS6_EEPT_SC_DpOT0_]+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr12construct_atINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEJRNS_17basic_string_viewIcS3_EEEPS6_EEPT_SC_DpOT0_]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr12construct_atINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEJRNS_17basic_string_viewIcS3_EEEPS6_EEPT_SC_DpOT0_]+0xfc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseFailedExpectMinFieldNum(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `bool webrtc::(anonymous namespace)::GetValueFromString<int>(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0xc8): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::RtpExtension* std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> >::__emplace_back_slow_path<webrtc::RtpExtension const&>(webrtc::RtpExtension const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x150): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension>&, std::__Cr::__split_buffer_pointer_layout>&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x114): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseContentDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, unsigned long*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, bool*, int*, webrtc::TransportDescription*, std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x7e0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x7f4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x808): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseContent(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, unsigned long*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, bool*, int*, webrtc::MediaContentDescription*, webrtc::TransportDescription*, std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0xa80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xae0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xcb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xf78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xfc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xfd8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x17c0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::compare(char const*) const' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2664): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2808): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2818): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x288c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x28e8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2910): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2920): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x2f94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x36c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x36dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3758): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x376c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x37e8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x37fc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3810): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3824): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3848): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x385c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::MediaContentDescription::AddRtpHeaderExtension(webrtc::RtpExtension const&)': webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescription21AddRtpHeaderExtensionERKNS_12RtpExtensionE]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescription21AddRtpHeaderExtensionERKNS_12RtpExtensionE]+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::AudioContentDescription::set_protocol(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': webrtc_sdp.cc:(.text[_ZN6webrtc23AudioContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23AudioContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::MediaContentDescription::set_protocol(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS0_IN6webrtc14SimulcastLayerENS_9allocatorIS2_EEEENS3_IS5_EEE22__base_destruct_at_endEPS5_]+0xbc): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::MediaContentDescription::MediaContentDescription(webrtc::MediaContentDescription const&)': webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescriptionC2ERKS0_]+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescriptionC2ERKS0_]+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescriptionC2ERKS0_]+0x258): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> >::vector(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEEC2ERKS5_]+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12RtpExtensionENS_9allocatorIS2_EEEC2ERKS5_]+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >, std::__Cr::allocator<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > > >::vector(std::__Cr::vector<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >, std::__Cr::allocator<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > > > const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS0_IN6webrtc14SimulcastLayerENS_9allocatorIS2_EEEENS3_IS5_EEEC2ERKS7_]+0xc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >::__init_with_size<webrtc::SimulcastLayer*, webrtc::SimulcastLayer*>(webrtc::SimulcastLayer*, webrtc::SimulcastLayer*, unsigned long)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::MediaContentDescription::~MediaContentDescription()': webrtc_sdp.cc:(.text[_ZN6webrtc23MediaContentDescriptionD2Ev]+0x1e0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::VideoContentDescription::set_protocol(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': webrtc_sdp.cc:(.text[_ZN6webrtc23VideoContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc23VideoContentDescription12set_protocolENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__hash_table<std::__Cr::__hash_value_type<int, int>, std::__Cr::__unordered_map_hasher<int, std::__Cr::pair<int const, int>, std::__Cr::hash<int>, std::__Cr::equal_to<int> >, std::__Cr::__unordered_map_equal<int, std::__Cr::pair<int const, int>, std::__Cr::equal_to<int>, std::__Cr::hash<int> >, std::__Cr::allocator<std::__Cr::pair<int const, int> > >::__emplace_unique<std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<int const&>, std::__Cr::tuple<> >(std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<int const&>&&, std::__Cr::tuple<>&&)::{lambda(int const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<int const&>&&, std::__Cr::tuple<>&&)#1}::operator()(int const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<int const&>&&, std::__Cr::tuple<>&&) const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiNS_4pairIKiiEENS_4hashIiEENS_8equal_toIiEEEENS_21__unordered_map_equalIiS6_SA_S8_EENS_9allocatorIS6_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRS5_EEENSL_IJEEEEEENS4_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEEDpOT_ENKUlSM_SK_OSN_OSO_E_clESM_SK_SZ_S10_]+0x15c): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiNS_4pairIKiiEENS_4hashIiEENS_8equal_toIiEEEENS_21__unordered_map_equalIiS6_SA_S8_EENS_9allocatorIS6_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRS5_EEENSL_IJEEEEEENS4_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEEDpOT_ENKUlSM_SK_OSN_OSO_E_clESM_SK_SZ_S10_]+0x1d4): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIiiEENS_22__unordered_map_hasherIiNS_4pairIKiiEENS_4hashIiEENS_8equal_toIiEEEENS_21__unordered_map_equalIiS6_SA_S8_EENS_9allocatorIS6_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRS5_EEENSL_IJEEEEEENS4_INS_15__hash_iteratorIPNS_11__hash_nodeIS2_PvEEEEbEEDpOT_ENKUlSM_SK_OSN_OSO_E_clESM_SK_SZ_S10_]+0x2bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::__introsort<std::__Cr::_ClassicAlgPolicy, webrtc::(anonymous namespace)::ParseContentDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, unsigned long*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, bool*, int*, webrtc::TransportDescription*, std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >*, webrtc::SdpParseError*)::$_0&, webrtc::Codec*, false>(webrtc::Codec*, webrtc::Codec*, webrtc::(anonymous namespace)::ParseContentDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, unsigned long*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, bool*, int*, webrtc::TransportDescription*, std::__Cr::vector<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> >, std::__Cr::allocator<std::__Cr::unique_ptr<webrtc::IceCandidate, std::__Cr::default_delete<webrtc::IceCandidate> > > >*, webrtc::SdpParseError*)::$_0&, std::__Cr::iterator_traits<webrtc::Codec*>::difference_type, bool)': webrtc_sdp.cc:(.text+0x978): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x98c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1390): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x13e0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x13f4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > std::__Cr::operator+<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >&&, char const*)': webrtc_sdp.cc:(.text[_ZNSt4__CrplIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEOS9_PKS6_]+0x38): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__CrplIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_12basic_stringIT_T0_T1_EEOS9_PKS6_]+0x78): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseSctpPort(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x248): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseSctpMaxMessageSize(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseSctpInit(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x324): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x33c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x3e4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseSsrcAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<webrtc::(anonymous namespace)::SsrcInfo, std::__Cr::allocator<webrtc::(anonymous namespace)::SsrcInfo> >*, int*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x23c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x25c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x270): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x62c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x638): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseRtpmapAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, webrtc::MediaContentDescription*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x2dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x368): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x390): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x3a4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x510): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x52c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x694): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseRtpmapAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, std::__Cr::vector<int, std::__Cr::allocator<int> > const&, webrtc::MediaContentDescription*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x730): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParsePacketizationAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, webrtc::MediaContentDescription*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x304): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x42c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x440): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x454): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseRtcpFbAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaType, webrtc::MediaContentDescription*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x22c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x374): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x40c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::ParseMsidAttribute(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x208): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x34c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x364): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x588): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x63c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x650): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x664): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::RidDescription, std::__Cr::allocator<webrtc::RidDescription> >::push_back(webrtc::RidDescription&&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE9push_backEOS2_]+0x60): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::RTCErrorOr<webrtc::RidDescription>::MoveValue()': webrtc_sdp.cc:(.text[_ZN6webrtc10RTCErrorOrINS_14RidDescriptionEE9MoveValueEv]+0x34): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text+0x254): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `bool webrtc::(anonymous namespace)::GetValueFromString<unsigned int>(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned int*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xc0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >::emplace_back<unsigned int const&>(unsigned int const&)::{lambda()#2}::operator()() const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6vectorIjNS_9allocatorIjEEE12emplace_backIJRKjEEERjDpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::SsrcGroup* std::__Cr::vector<webrtc::SsrcGroup, std::__Cr::allocator<webrtc::SsrcGroup> >::__emplace_back_slow_path<webrtc::SsrcGroup>(webrtc::SsrcGroup&&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::(anonymous namespace)::SsrcInfo, std::__Cr::allocator<webrtc::(anonymous namespace)::SsrcInfo> >::emplace_back<webrtc::(anonymous namespace)::SsrcInfo const&>(webrtc::(anonymous namespace)::SsrcInfo const&)::{lambda()#2}::operator()() const': webrtc_sdp.cc:(.text+0x1e8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1fc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `_ZNSt4__Cr16allocator_traitsINS_9allocatorIN6webrtc12_GLOBAL__N_18SsrcInfoEEEE9constructIS4_JRKS4_ETnNS_9enable_ifIXnt17__has_construct_vIS5_PT_DpT0_EEiE4typeELi0EEEvRS5_SC_DpOSD_': webrtc_sdp.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::UpdateCodec(int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::MediaContentDescription*)': webrtc_sdp.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `bool webrtc::(anonymous namespace)::GetValueFromString<unsigned long>(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, unsigned long*, webrtc::SdpParseError*)': webrtc_sdp.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::UpdateCodec(int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, int, unsigned long, webrtc::MediaContentDescription*)': webrtc_sdp.cc:(.text+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1b0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::FeedbackParam::FeedbackParam(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': webrtc_sdp.cc:(.text[_ZN6webrtc13FeedbackParamC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEERKNS1_12basic_stringIcS4_NS1_9allocatorIcEEEE]+0xf4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc13FeedbackParamC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEERKNS1_12basic_stringIcS4_NS1_9allocatorIcEEEE]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc13FeedbackParamC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEERKNS1_12basic_stringIcS4_NS1_9allocatorIcEEEE]+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >* std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::__emplace_back_slow_path<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE24__emplace_back_slow_pathIJRKS6_EEEPS6_DpOT_]+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE24__emplace_back_slow_pathIJRKS6_EEEPS6_DpOT_]+0xe0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::RidDescription* std::__Cr::vector<webrtc::RidDescription, std::__Cr::allocator<webrtc::RidDescription> >::__emplace_back_slow_path<webrtc::RidDescription>(webrtc::RidDescription&&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::vector<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >, std::__Cr::allocator<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > > >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >*, std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >*>(std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >*, std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >*, long)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS0_IN6webrtc14SimulcastLayerENS_9allocatorIS2_EEEENS3_IS5_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS5_SA_EEvT0_T1_l]+0x24c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, webrtc::SimulcastLayer*, webrtc::SimulcastLayer*>(webrtc::SimulcastLayer*, webrtc::SimulcastLayer*, long)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x11c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x150): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x1a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x21c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x27c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x348): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x35c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::(anonymous namespace)::RemoveRidsFromSimulcastLayerList(std::__Cr::set<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > const&, webrtc::SimulcastLayerList const&)': webrtc_sdp.cc:(.text+0x13c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x1f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text+0x20c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::SimulcastLayer* std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >::__emplace_back_slow_path<webrtc::SimulcastLayer const&>(webrtc::SimulcastLayer const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer>&, std::__Cr::__split_buffer_pointer_layout>&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x48): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, webrtc::RidDescription>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, webrtc::RidDescription>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, webrtc::RidDescription> > >::__emplace_unique<std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>, std::__Cr::tuple<> >(std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&) const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN6webrtc14RidDescriptionEEENS_19__map_value_compareIS7_NS_4pairIKS7_S9_EENS_4lessIS7_EEEENS5_ISE_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSD_EEENSO_IJEEEEEENSC_INS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEElEEbEEDpOT_ENKUlSP_SN_OSQ_OSR_E_clESP_SN_S12_S13_]+0xf0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN6webrtc14RidDescriptionEEENS_19__map_value_compareIS7_NS_4pairIKS7_S9_EENS_4lessIS7_EEEENS5_ISE_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSD_EEENSO_IJEEEEEENSC_INS_15__tree_iteratorISA_PNS_11__tree_nodeISA_PvEElEEbEEDpOT_ENKUlSP_SN_OSQ_OSR_E_clESP_SN_S12_S13_]+0x170): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::RidDescription* std::__Cr::vector<webrtc::RidDescription, std::__Cr::allocator<webrtc::RidDescription> >::__emplace_back_slow_path<webrtc::RidDescription const&>(webrtc::RidDescription const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, webrtc::RidDescription>, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, webrtc::RidDescription>, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, webrtc::RidDescription> > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, webrtc::RidDescription>, void*>*)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEN6webrtc14RidDescriptionEEENS_19__map_value_compareIS7_NS_4pairIKS7_S9_EENS_4lessIS7_EEEENS5_ISE_EEE14__tree_deleterclEPNS_11__tree_nodeISA_PvEE]+0x8c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::vector<webrtc::RidDescription, std::__Cr::allocator<webrtc::RidDescription> >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, webrtc::RidDescription*, webrtc::RidDescription*>(webrtc::RidDescription*, webrtc::RidDescription*, long)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x22c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14RidDescriptionENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x240): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `void std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, long)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0xd0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x118): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x14c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x194): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x22c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x288): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x338): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS4_IS6_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS6_SB_EEvT0_T1_l]+0x34c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::StreamParams* std::__Cr::vector<webrtc::StreamParams, std::__Cr::allocator<webrtc::StreamParams> >::__emplace_back_slow_path<webrtc::StreamParams>(webrtc::StreamParams&&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12StreamParamsENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12StreamParamsENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::StreamParams* std::__Cr::vector<webrtc::StreamParams, std::__Cr::allocator<webrtc::StreamParams> >::__emplace_back_slow_path<webrtc::StreamParams const&>(webrtc::StreamParams const&)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12StreamParamsENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o):webrtc_sdp.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12StreamParamsENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x198): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__emplace_unique<std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>, std::__Cr::tuple<> >(std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&) const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSB_EEENSM_IJEEEEEENSA_INS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEbEEDpOT_ENKUlSN_SL_OSO_OSP_E_clESN_SL_S10_S11_]+0xf0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSB_EEENSM_IJEEEEEENSA_INS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEbEEDpOT_ENKUlSN_SL_OSO_OSP_E_clESN_SL_S10_S11_]+0x170): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::UnsupportedContentDescription::UnsupportedContentDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': webrtc_sdp.cc:(.text[_ZN6webrtc29UnsupportedContentDescriptionC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x140): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: webrtc_sdp.cc:(.text[_ZN6webrtc29UnsupportedContentDescriptionC2ENSt4__Cr17basic_string_viewIcNS1_11char_traitsIcEEEE]+0x154): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `webrtc::UnsupportedContentDescription::CloneInternal() const': webrtc_sdp.cc:(.text[_ZNK6webrtc29UnsupportedContentDescription13CloneInternalEv]+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__emplace_unique<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&)::{lambda(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&)#1}::operator()(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&) const': webrtc_sdp.cc:(.text[_ZZNSt4__Cr6__treeINS_4pairINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_4lessIS8_EENS5_IS8_EEE16__emplace_uniqueIJS8_EEENS1_INS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEbEEDpOT_ENKUlRKS8_OS8_E_clESP_SQ_]+0x130): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>*)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6__treeINS_4pairINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_4lessIS8_EENS5_IS8_EEE14__tree_deleterclEPNS_11__tree_nodeIS8_PvEE]+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(webrtc_sdp.o): in function `std::__Cr::__tree<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, void*>*)': webrtc_sdp.cc:(.text[_ZNSt4__Cr6__treeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_4lessIS6_EENS4_IS6_EEE14__tree_deleterclEPNS_11__tree_nodeIS6_PvEE]+0x84): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::WriteFmtpParameters(std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&, webrtc::StringBuilder&)': rtp_parameters.cc:(.text+0xe0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x104): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x118): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x128): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::ParseFmtpParameterSet(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >&)': rtp_parameters.cc:(.text+0x308): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x324): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x3d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x41c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x430): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodec::RtpCodec(webrtc::RtpCodec const&)': rtp_parameters.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x13c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodec::~RtpCodec()': rtp_parameters.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodec::~RtpCodec()': rtp_parameters.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodecCapability::~RtpCodecCapability()': rtp_parameters.cc:(.text+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpHeaderExtensionCapability::RtpHeaderExtensionCapability(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': rtp_parameters.cc:(.text+0xdc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o):rtp_parameters.cc:(.text+0xf0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpEncodingParameters::RtpEncodingParameters(webrtc::RtpEncodingParameters const&)': rtp_parameters.cc:(.text+0xe4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x124): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpEncodingParameters::~RtpEncodingParameters()': rtp_parameters.cc:(.text+0x18c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodecParameters::~RtpCodecParameters()': rtp_parameters.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCapabilities::~RtpCapabilities()': rtp_parameters.cc:(.text+0x98): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtcpParameters::RtcpParameters(webrtc::RtcpParameters const&)': rtp_parameters.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpParameters::RtpParameters(webrtc::RtpParameters const&)': rtp_parameters.cc:(.text+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1c4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x204): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpParameters::~RtpParameters()': rtp_parameters.cc:(.text+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpExtension::DeduplicateHeaderExtensions(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&, webrtc::RtpExtension::Filter)': rtp_parameters.cc:(.text+0x110): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1bc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x29c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpParameters::IsMixedCodec() const': rtp_parameters.cc:(.text+0x1a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1f4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>* std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__construct_from_tree<std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__copy_construct_tree(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>*)::{lambda(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&)#1}>(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>*, std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__copy_construct_tree(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>*)::{lambda(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&)#1})': rtp_parameters.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE21__construct_from_treeIZNSH_21__copy_construct_treeEPNS_11__tree_nodeIS8_PvEEEUlRKSC_E_EESM_SM_T_]+0x118): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `std::__Cr::unique_ptr<std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>, std::__Cr::__tree_node_destructor<std::__Cr::allocator<std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*> > > > std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__construct_node<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&>(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&)': rtp_parameters.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__construct_nodeIJRKSC_EEENS_10unique_ptrINS_11__tree_nodeIS8_PvEENS_22__tree_node_destructorINS5_ISO_EEEEEEDpOT_]+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__construct_nodeIJRKSC_EEENS_10unique_ptrINS_11__tree_nodeIS8_PvEENS_22__tree_node_destructorINS5_ISO_EEEEEEDpOT_]+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__construct_nodeIJRKSC_EEENS_10unique_ptrINS_11__tree_nodeIS8_PvEENS_22__tree_node_destructorINS5_ISO_EEEEEEDpOT_]+0xc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `void std::__Cr::__introsort<std::__Cr::_ClassicAlgPolicy, webrtc::RtpExtension::DeduplicateHeaderExtensions(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&, webrtc::RtpExtension::Filter)::$_0&, webrtc::RtpExtension*, false>(webrtc::RtpExtension*, webrtc::RtpExtension*, webrtc::RtpExtension::DeduplicateHeaderExtensions(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&, webrtc::RtpExtension::Filter)::$_0&, std::__Cr::iterator_traits<webrtc::RtpExtension*>::difference_type, bool)': rtp_parameters.cc:(.text+0x1c4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x558): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x56c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x5c4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x5d4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x670): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x9fc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xa0c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xa64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xa74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xabc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xad0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xbc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xd70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xe98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xea8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xfa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0xfbc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x10ac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1110): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1124): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x11fc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1214): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x125c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x12a4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x13c0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x146c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x147c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x14d8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x14e8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x15b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x15d0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1628): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1694): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x16a4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1798): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x17a8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x17fc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x18e0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1948): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x195c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1a44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1a5c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1ad0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1ae4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1af8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x1b0c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o):rtp_parameters.cc:(.text+0x1b20): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `bool std::__Cr::__insertion_sort_incomplete<std::__Cr::_ClassicAlgPolicy, webrtc::RtpExtension::DeduplicateHeaderExtensions(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&, webrtc::RtpExtension::Filter)::$_0&, webrtc::RtpExtension*>(webrtc::RtpExtension*, webrtc::RtpExtension*, webrtc::RtpExtension::DeduplicateHeaderExtensions(std::__Cr::vector<webrtc::RtpExtension, std::__Cr::allocator<webrtc::RtpExtension> > const&, webrtc::RtpExtension::Filter)::$_0&)': rtp_parameters.cc:(.text+0x124): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x218): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x294): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x2ac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text+0x38c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `std::__Cr::enable_if<is_move_constructible<webrtc::RtpExtension>::value&&is_move_assignable<webrtc::RtpExtension>::value, void>::type std::__Cr::swap<webrtc::RtpExtension>(webrtc::RtpExtension&, webrtc::RtpExtension&)': rtp_parameters.cc:(.text[_ZNSt4__Cr4swapIN6webrtc12RtpExtensionEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS4_EE5valueEvE4typeERS4_S7_]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr4swapIN6webrtc12RtpExtensionEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS4_EE5valueEvE4typeERS4_S7_]+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr4swapIN6webrtc12RtpExtensionEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS4_EE5valueEvE4typeERS4_S7_]+0xbc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr4swapIN6webrtc12RtpExtensionEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS4_EE5valueEvE4typeERS4_S7_]+0x120): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rtp_parameters.cc:(.text[_ZNSt4__Cr4swapIN6webrtc12RtpExtensionEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS4_EE5valueEvE4typeERS4_S7_]+0x130): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_parameters.o): in function `webrtc::RtpCodec::operator==(webrtc::RtpCodec const&) const': rtp_parameters.cc:(.text[_ZNK6webrtc8RtpCodeceqERKS0_]+0x1b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::FeedbackParams::~FeedbackParams()': codec.cc:(.text+0xb8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::erase(std::__Cr::__wrap_iter<webrtc::FeedbackParam const*>)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EE]+0x13c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EE]+0x150): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::Codec(webrtc::Codec::Type, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, int)': codec.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::Codec(webrtc::Codec::Type, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, int, unsigned long)': codec.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::Codec(webrtc::Codec::Type)': codec.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::Codec(webrtc::SdpAudioFormat const&)': codec.cc:(.text+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::Codec(webrtc::SdpVideoFormat const&)': codec.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o):codec.cc:(.text+0x54): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::~Codec()': codec.cc:(.text+0x138): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::operator=(webrtc::Codec const&)': codec.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::operator=(webrtc::Codec&&)': codec.cc:(.text+0x254): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::MatchesRtpCodec(webrtc::RtpCodec const&) const': codec.cc:(.text+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::GetParam(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*) const': codec.cc:(.text+0x10c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0x11c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::SetParam(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': codec.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::ToCodecParameters() const': codec.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::Codec::ToString() const': codec.cc:(.text+0x1f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::CreateAudioRtxCodec(int, int)': codec.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::CreateAudioCodec(int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, int, unsigned long)': codec.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::CreateVideoCodec(int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': codec.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0x19c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text+0x1cc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::FindAllMatchingCodecs(std::__Cr::vector<webrtc::Codec, std::__Cr::allocator<webrtc::Codec> > const&, webrtc::Codec const&)': codec.cc:(.text+0x13c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::AddH264ConstrainedBaselineProfileToSupportedFormats(std::__Cr::vector<webrtc::SdpVideoFormat, std::__Cr::allocator<webrtc::SdpVideoFormat> >*)': codec.cc:(.text+0x330): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text+0x344): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text+0x358): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `void std::__Cr::__if_likely_else<std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::emplace_back<webrtc::FeedbackParam const&>(webrtc::FeedbackParam const&)::{lambda()#1}, std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::emplace_back<webrtc::FeedbackParam const&>(webrtc::FeedbackParam const&)::{lambda()#2}>(bool, std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::emplace_back<webrtc::FeedbackParam const&>(webrtc::FeedbackParam const&)::{lambda()#1}, std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::emplace_back<webrtc::FeedbackParam const&>(webrtc::FeedbackParam const&)::{lambda()#2})': codec.cc:(.text[_ZNSt4__Cr16__if_likely_elseIZNS_6vectorIN6webrtc13FeedbackParamENS_9allocatorIS3_EEE12emplace_backIJRKS3_EEERS3_DpOT_EUlvE_ZNS7_IJS9_EEESA_SD_EUlvE0_EEvbT_T0_]+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr16__if_likely_elseIZNS_6vectorIN6webrtc13FeedbackParamENS_9allocatorIS3_EEE12emplace_backIJRKS3_EEERS3_DpOT_EUlvE_ZNS7_IJS9_EEESA_SD_EUlvE0_EEvbT_T0_]+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr16__if_likely_elseIZNS_6vectorIN6webrtc13FeedbackParamENS_9allocatorIS3_EEE12emplace_backIJRKS3_EEERS3_DpOT_EUlvE_ZNS7_IJS9_EEESA_SD_EUlvE0_EEvbT_T0_]+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::FeedbackParam* std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::__emplace_back_slow_path<webrtc::FeedbackParam const&>(webrtc::FeedbackParam const&)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x100): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x1c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x1dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam>&, std::__Cr::__split_buffer_pointer_layout>&)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x118): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x12c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::erase(std::__Cr::__wrap_iter<webrtc::FeedbackParam const*>, std::__Cr::__wrap_iter<webrtc::FeedbackParam const*>)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EES9_]+0x144): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o):codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EES9_]+0x158): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE14__assign_valueIRKSC_S8_TnNS_9enable_ifIX22__is_tree_value_type_vIT0_EEiE4typeELi0EEEvRSC_OT_': codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE14__assign_valueIRKSC_S8_TnNS_9enable_ifIX22__is_tree_value_type_vIT0_EEiE4typeELi0EEEvRSC_OT_]+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE14__assign_valueIRKSC_S8_TnNS_9enable_ifIX22__is_tree_value_type_vIT0_EEiE4typeELi0EEEvRSC_OT_]+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE14__assign_valueIRKSC_S8_TnNS_9enable_ifIX22__is_tree_value_type_vIT0_EEiE4typeELi0EEEvRSC_OT_]+0xcc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE14__assign_valueIRKSC_S8_TnNS_9enable_ifIX22__is_tree_value_type_vIT0_EEiE4typeELi0EEEvRSC_OT_]+0xe4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `void std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::__init_with_size<webrtc::FeedbackParam*, webrtc::FeedbackParam*>(webrtc::FeedbackParam*, webrtc::FeedbackParam*, unsigned long)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `void std::__Cr::vector<webrtc::FeedbackParam, std::__Cr::allocator<webrtc::FeedbackParam> >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, webrtc::FeedbackParam*, webrtc::FeedbackParam*>(webrtc::FeedbackParam*, webrtc::FeedbackParam*, long)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x13c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x26c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x2b0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x30c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13FeedbackParamENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x320): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::pair<webrtc::FeedbackParam*, webrtc::FeedbackParam*> std::__Cr::__copy_impl::operator()<webrtc::FeedbackParam*, webrtc::FeedbackParam*, webrtc::FeedbackParam*>(webrtc::FeedbackParam*, webrtc::FeedbackParam*, webrtc::FeedbackParam*) const': codec.cc:(.text[_ZNKSt4__Cr11__copy_implclIPN6webrtc13FeedbackParamES4_S4_EENS_4pairIT_T1_EES6_T0_S7_]+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNKSt4__Cr11__copy_implclIPN6webrtc13FeedbackParamES4_S4_EENS_4pairIT_T1_EES6_T0_S7_]+0xb0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNKSt4__Cr11__copy_implclIPN6webrtc13FeedbackParamES4_S4_EENS_4pairIT_T1_EES6_T0_S7_]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNKSt4__Cr11__copy_implclIPN6webrtc13FeedbackParamES4_S4_EENS_4pairIT_T1_EES6_T0_S7_]+0x108): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::vector<webrtc::Codec const*, std::__Cr::allocator<webrtc::Codec const*> >::emplace_back<webrtc::Codec const*>(webrtc::Codec const*&&)::{lambda()#2}::operator()() const': codec.cc:(.text[_ZZNSt4__Cr6vectorIPKN6webrtc5CodecENS_9allocatorIS4_EEE12emplace_backIJS4_EEERS4_DpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `webrtc::SdpVideoFormat* std::__Cr::vector<webrtc::SdpVideoFormat, std::__Cr::allocator<webrtc::SdpVideoFormat> >::__emplace_back_slow_path<webrtc::SdpVideoFormat const&>(webrtc::SdpVideoFormat const&)': codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SdpVideoFormatENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x16c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: codec.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SdpVideoFormatENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `void absl::inlined_vector_internal::Storage<webrtc::ScalabilityMode, 34ul, std::__Cr::allocator<webrtc::ScalabilityMode> >::Assign<absl::inlined_vector_internal::IteratorValueAdapter<std::__Cr::allocator<webrtc::ScalabilityMode>, webrtc::ScalabilityMode const*> >(absl::inlined_vector_internal::IteratorValueAdapter<std::__Cr::allocator<webrtc::ScalabilityMode>, webrtc::ScalabilityMode const*>, unsigned long)': codec.cc:(.text[_ZN4absl23inlined_vector_internal7StorageIN6webrtc15ScalabilityModeELm34ENSt4__Cr9allocatorIS3_EEE6AssignINS0_20IteratorValueAdapterIS6_PKS3_EEEEvT_m]+0x200): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::erase(std::__Cr::__tree_const_iterator<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, void*>*, long>)': codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE5eraseENS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEE]+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec.o):codec.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE21__insert_range_uniqueINS_20__map_const_iteratorINS_21__tree_const_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEEESQ_EEvT_T0_]+0x194): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec_comparators.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__emplace_unique<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >&&) const': codec_comparators.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__emplace_uniqueIJSC_EEENSA_INS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEbEEDpOT_ENKUlRSB_OSC_E_clEST_SU_]+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: codec_comparators.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE16__emplace_uniqueIJSC_EEENSA_INS_15__tree_iteratorIS8_PNS_11__tree_nodeIS8_PvEElEEbEEDpOT_ENKUlRSB_OSC_E_clEST_SU_]+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(codec_comparators.o): in function `webrtc::(anonymous namespace)::GetFmtpParameterOrDefault(std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': codec_comparators.cc:(.text+0x120): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogLineRef::DefaultLogLine() const': logging.cc:(.text+0x118): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x138): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x17c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x1a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x1bc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o):logging.cc:(.text+0x1c8): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogLineRef::DefaultLogLine() const': logging.cc:(.text+0x2ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogMessage::LogMessage(char const*, int, webrtc::LoggingSeverity, webrtc::LogErrorContext, int)': logging.cc:(.text+0x1cc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: logging.cc:(.text+0x218): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: logging.cc:(.text+0x22c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogMessage::~LogMessage()': logging.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogMessage::FinishPrintStream()': logging.cc:(.text+0x34): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o):logging.cc:(.text+0x70): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogMessage::ConfigureLogging(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': logging.cc:(.text+0x3ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::webrtc_logging_impl::Log(webrtc::webrtc_logging_impl::LogArgType const*, ...)': logging.cc:(.text+0x174): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x490): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x4cc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogSink::OnLogMessage(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, webrtc::LoggingSeverity, char const*)': logging.cc:(.text+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0xf8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogSink::OnLogMessage(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::LoggingSeverity, char const*)': logging.cc:(.text+0xc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x100): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: logging.cc:(.text+0x1a8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: logging.cc:(.text+0x1bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: logging.cc:(.text+0x1d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(logging.o): in function `webrtc::LogSink::OnLogMessage(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': logging.cc:(.text+0xf8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: logging.cc:(.text+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::SdpVideoFormat(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': sdp_video_format.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::SdpVideoFormat(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&)': sdp_video_format.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::SdpVideoFormat(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&, absl::InlinedVector<webrtc::ScalabilityMode, 34ul, std::__Cr::allocator<webrtc::ScalabilityMode> > const&)': sdp_video_format.cc:(.text+0x48): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::SdpVideoFormat(webrtc::SdpVideoFormat const&)': sdp_video_format.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::operator=(webrtc::SdpVideoFormat const&)': sdp_video_format.cc:(.text+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::ToString() const': sdp_video_format.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0x58): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0xa8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o):sdp_video_format.cc:(.text+0xd4): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::VP8()': sdp_video_format.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::H264()': sdp_video_format.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::H265()': sdp_video_format.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::VP9Profile0()': sdp_video_format.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::SdpVideoFormat::VP9Profile1()': sdp_video_format.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o):sdp_video_format.cc:(.text+0xa4): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::FuzzyMatchSdpVideoFormat(webrtc::ArrayView<webrtc::SdpVideoFormat const, -4711l>, webrtc::SdpVideoFormat const&)': sdp_video_format.cc:(.text+0x36c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: sdp_video_format.cc:(.text+0x380): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `webrtc::(anonymous namespace)::H264GetPacketizationModeOrDefault(std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&)': sdp_video_format.cc:(.text+0x150): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `void std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__insert_range_unique<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*>(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*)': sdp_video_format.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE21__insert_range_uniqueIPKSC_SK_EEvT_T0_]+0x13c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sdp_video_format.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >::__insert_range_unique<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*>(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const&) const': sdp_video_format.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEES7_EENS_19__map_value_compareIS7_NS_4pairIKS7_S7_EENS_4lessIS7_EEEENS5_ISC_EEE21__insert_range_uniqueIPKSC_SK_EEvT_T0_ENKUlRSB_RSJ_E_clESN_SO_]+0x244): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rid_description.o): in function `webrtc::RidDescription::RidDescription(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, webrtc::RidDirection)': rid_description.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rid_description.o): in function `webrtc::RidDescription::RidDescription(webrtc::RidDescription const&)': rid_description.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: rid_description.cc:(.text+0x144): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rid_description.o): in function `webrtc::RidDescription::~RidDescription()': rid_description.cc:(.text+0xb4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rid_description.o): in function `webrtc::RidDescription::operator=(webrtc::RidDescription const&)': rid_description.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: rid_description.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtp_utils.o): in function `webrtc::ApplyPacketOptions(webrtc::ArrayView<unsigned char, -4711l>, webrtc::PacketTimeUpdateParams const&, unsigned long)': rtp_utils.cc:(.text+0x2f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::operator=(webrtc::StreamParams const&)': stream_params.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0xe4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0xf4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup::SsrcGroup(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> > const&)': stream_params.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup::SsrcGroup(webrtc::SsrcGroup const&)': stream_params.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup::~SsrcGroup()': stream_params.cc:(.text+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup::operator=(webrtc::SsrcGroup const&)': stream_params.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup::operator=(webrtc::SsrcGroup&&)': stream_params.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::StreamParams(webrtc::StreamParams const&)': stream_params.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x10c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x1b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::~StreamParams()': stream_params.cc:(.text+0x150): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::operator=(webrtc::StreamParams&&)': stream_params.cc:(.text+0xd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::GenerateSsrcs(int, bool, bool, webrtc::UniqueRandomIdGenerator*)': stream_params.cc:(.text+0x2a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x324): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x3ec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x400): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::GetPrimarySsrcs(std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >*) const': stream_params.cc:(.text+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::GetSecondarySsrcs(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> > const&, std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >*) const': stream_params.cc:(.text+0x168): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::AddSecondarySsrc(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, unsigned int, unsigned int)': stream_params.cc:(.text+0xd4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: stream_params.cc:(.text+0x238): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::StreamParams::first_stream_id() const': stream_params.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `void std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, unsigned int*, unsigned int*>(unsigned int*, unsigned int*, long)': stream_params.cc:(.text[_ZNSt4__Cr6vectorIjNS_9allocatorIjEEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPjS6_EEvT0_T1_l]+0x18c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `webrtc::SsrcGroup* std::__Cr::__uninitialized_allocator_copy_impl<std::__Cr::allocator<webrtc::SsrcGroup>, webrtc::SsrcGroup*, webrtc::SsrcGroup*, webrtc::SsrcGroup*>(std::__Cr::allocator<webrtc::SsrcGroup>&, webrtc::SsrcGroup*, webrtc::SsrcGroup*, webrtc::SsrcGroup*)': stream_params.cc:(.text[_ZNSt4__Cr35__uninitialized_allocator_copy_implINS_9allocatorIN6webrtc9SsrcGroupEEEPS3_S5_S5_EET2_RT_T0_T1_S6_]+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text[_ZNSt4__Cr35__uninitialized_allocator_copy_implINS_9allocatorIN6webrtc9SsrcGroupEEEPS3_S5_S5_EET2_RT_T0_T1_S6_]+0xd8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `std::__Cr::vector<webrtc::SsrcGroup, std::__Cr::allocator<webrtc::SsrcGroup> >::clear()': stream_params.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE5clearEv]+0xec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `void std::__Cr::vector<webrtc::SsrcGroup, std::__Cr::allocator<webrtc::SsrcGroup> >::__assign_with_size<std::__Cr::_ClassicAlgPolicy, webrtc::SsrcGroup*, webrtc::SsrcGroup*>(webrtc::SsrcGroup*, webrtc::SsrcGroup*, long)': stream_params.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x15c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x1cc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc9SsrcGroupENS_9allocatorIS2_EEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPS2_S8_EEvT0_T1_l]+0x29c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `_ZNSt4__Cr8__copy_nINS_17_ClassicAlgPolicyEPN6webrtc9SsrcGroupES4_TnNS_9enable_ifIXsr37__has_random_access_iterator_categoryIT0_EE5valueEiE4typeELi0EEENS_4pairIS6_T1_EES6_NS_8_IterOpsIT_E17__difference_typeIS6_EESA_': stream_params.cc:(.text[_ZNSt4__Cr8__copy_nINS_17_ClassicAlgPolicyEPN6webrtc9SsrcGroupES4_TnNS_9enable_ifIXsr37__has_random_access_iterator_categoryIT0_EE5valueEiE4typeELi0EEENS_4pairIS6_T1_EES6_NS_8_IterOpsIT_E17__difference_typeIS6_EESA_]+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: stream_params.cc:(.text[_ZNSt4__Cr8__copy_nINS_17_ClassicAlgPolicyEPN6webrtc9SsrcGroupES4_TnNS_9enable_ifIXsr37__has_random_access_iterator_categoryIT0_EE5valueEiE4typeELi0EEENS_4pairIS6_T1_EES6_NS_8_IterOpsIT_E17__difference_typeIS6_EESA_]+0xc0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `void std::__Cr::__uninitialized_allocator_relocate<std::__Cr::allocator<webrtc::SsrcGroup>, webrtc::SsrcGroup*>(std::__Cr::allocator<webrtc::SsrcGroup>&, webrtc::SsrcGroup*, webrtc::SsrcGroup*, webrtc::SsrcGroup*)': stream_params.cc:(.text[_ZNSt4__Cr34__uninitialized_allocator_relocateINS_9allocatorIN6webrtc9SsrcGroupEEEPS3_EEvRT_T0_S8_S8_]+0x12c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: stream_params.cc:(.text[_ZNSt4__Cr34__uninitialized_allocator_relocateINS_9allocatorIN6webrtc9SsrcGroupEEEPS3_EEvRT_T0_S8_S8_]+0x150): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >::emplace_back<unsigned int>(unsigned int&&)::{lambda()#2}::operator()() const': stream_params.cc:(.text[_ZZNSt4__Cr6vectorIjNS_9allocatorIjEEE12emplace_backIJjEEERjDpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stream_params.o): in function `std::__Cr::__wrap_iter<unsigned int*> std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> >::__insert_with_size<std::__Cr::_ClassicAlgPolicy, std::__Cr::__wrap_iter<unsigned int const*>, std::__Cr::__wrap_iter<unsigned int const*> >(std::__Cr::__wrap_iter<unsigned int const*>, std::__Cr::__wrap_iter<unsigned int const*>, std::__Cr::__wrap_iter<unsigned int const*>, long)': stream_params.cc:(.text[_ZNSt4__Cr6vectorIjNS_9allocatorIjEEE18__insert_with_sizeINS_17_ClassicAlgPolicyENS_11__wrap_iterIPKjEES9_EENS6_IPjEES9_T0_T1_l]+0x3cc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(unique_id_generator.o): in function `webrtc::UniqueStringGenerator::AddKnownId(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': unique_id_generator.cc:(.text+0x158): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(unique_id_generator.o):unique_id_generator.cc:(.text+0x16c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::IceParameters::Validate() const': transport_description.cc:(.text+0x1a4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x1e0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x208): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x240): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x264): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o):transport_description.cc:(.text+0x56c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::IceParameters::Validate() const': transport_description.cc:(.text+0x808): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x81c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::ConnectionRoleToString(webrtc::ConnectionRole const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': transport_description.cc:(.text+0x34): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::TransportDescription::TransportDescription(std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::IceMode, webrtc::ConnectionRole, webrtc::SSLFingerprint const*)': transport_description.cc:(.text+0x17c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x1d4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::TransportDescription::TransportDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': transport_description.cc:(.text+0x160): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x174): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::TransportDescription::TransportDescription(webrtc::TransportDescription const&)': transport_description.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::TransportDescription::~TransportDescription()': transport_description.cc:(.text+0xf8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(transport_description.o): in function `webrtc::TransportDescription::operator=(webrtc::TransportDescription const&)': transport_description.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0xdc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: transport_description.cc:(.text+0x140): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(media_protocol_names.o): in function `webrtc::IsRtpProtocol(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': media_protocol_names.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::ContentGroup(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': session_description.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::ContentGroup(webrtc::ContentGroup const&)': session_description.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::operator=(webrtc::ContentGroup const&)': session_description.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::operator=(webrtc::ContentGroup&&)': session_description.cc:(.text+0xf8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::~ContentGroup()': session_description.cc:(.text+0xac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::RemoveContentName(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': session_description.cc:(.text+0x140): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentGroup::ToString() const': session_description.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::SessionDescription::~SessionDescription()': session_description.cc:(.text+0x144): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::SessionDescription::AddContent(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, webrtc::MediaProtocolType, std::__Cr::unique_ptr<webrtc::MediaContentDescription, std::__Cr::default_delete<webrtc::MediaContentDescription> >)': session_description.cc:(.text+0x190): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text+0x1a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text+0x1c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::SessionDescription::AddContent(webrtc::ContentInfo&&)': session_description.cc:(.text+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o):session_description.cc:(.text+0x1a8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::SessionDescription::AddTransportInfo(webrtc::TransportInfo const&)': session_description.cc:(.text+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text+0x9c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `std::__Cr::vector<webrtc::TransportInfo, std::__Cr::allocator<webrtc::TransportInfo> >::erase(std::__Cr::__wrap_iter<webrtc::TransportInfo const*>)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EE]+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE5eraseENS_11__wrap_iterIPKS2_EE]+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::SessionDescription::GetGroupsByName(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&) const': session_description.cc:(.text+0x110): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentInfo::ContentInfo(webrtc::ContentInfo const&)': session_description.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `void std::__Cr::vector<webrtc::ContentInfo, std::__Cr::allocator<webrtc::ContentInfo> >::__init_with_size<webrtc::ContentInfo*, webrtc::ContentInfo*>(webrtc::ContentInfo*, webrtc::ContentInfo*, unsigned long)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x104): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `void std::__Cr::vector<webrtc::TransportInfo, std::__Cr::allocator<webrtc::TransportInfo> >::__init_with_size<webrtc::TransportInfo*, webrtc::TransportInfo*>(webrtc::TransportInfo*, webrtc::TransportInfo*, unsigned long)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0xf8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `void std::__Cr::vector<webrtc::ContentGroup, std::__Cr::allocator<webrtc::ContentGroup> >::__init_with_size<webrtc::ContentGroup*, webrtc::ContentGroup*>(webrtc::ContentGroup*, webrtc::ContentGroup*, unsigned long)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12ContentGroupENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc12ContentGroupENS_9allocatorIS2_EEE16__init_with_sizeIPS2_S7_EEvT_T0_m]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `void std::__Cr::__destroy_at<webrtc::ContentGroup>(webrtc::ContentGroup*)': session_description.cc:(.text[_ZNSt4__Cr12__destroy_atIN6webrtc12ContentGroupEEEvPT_]+0xb0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::ContentInfo* std::__Cr::vector<webrtc::ContentInfo, std::__Cr::allocator<webrtc::ContentInfo> >::__emplace_back_slow_path<webrtc::ContentInfo>(webrtc::ContentInfo&&)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x1ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `std::__Cr::vector<webrtc::ContentInfo, std::__Cr::allocator<webrtc::ContentInfo> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::ContentInfo, std::__Cr::allocator<webrtc::ContentInfo>&, std::__Cr::__split_buffer_pointer_layout>&)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x114): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o):session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc11ContentInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x128): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `webrtc::TransportInfo* std::__Cr::vector<webrtc::TransportInfo, std::__Cr::allocator<webrtc::TransportInfo> >::__emplace_back_slow_path<webrtc::TransportInfo const&>(webrtc::TransportInfo const&)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x100): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x1ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJRKS2_EEEPS2_DpOT_]+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `std::__Cr::vector<webrtc::TransportInfo, std::__Cr::allocator<webrtc::TransportInfo> >::__swap_out_circular_buffer(std::__Cr::__split_buffer<webrtc::TransportInfo, std::__Cr::allocator<webrtc::TransportInfo>&, std::__Cr::__split_buffer_pointer_layout>&)': session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: session_description.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc13TransportInfoENS_9allocatorIS2_EEE26__swap_out_circular_bufferERNS_14__split_bufferIS2_RS4_NS_29__split_buffer_pointer_layoutEEE]+0x114): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(session_description.o): in function `std::__Cr::vector<webrtc::ContentGroup const*, std::__Cr::allocator<webrtc::ContentGroup const*> >::emplace_back<webrtc::ContentGroup const*>(webrtc::ContentGroup const*&&)::{lambda()#2}::operator()() const': session_description.cc:(.text[_ZZNSt4__Cr6vectorIPKN6webrtc12ContentGroupENS_9allocatorIS4_EEE12emplace_backIJS4_EEERS4_DpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o):simulcast_description.cc:(.text+0xd8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `webrtc::SimulcastLayerList::AddLayer(webrtc::SimulcastLayer const&)': simulcast_description.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_description.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_description.cc:(.text+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_description.cc:(.text+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `webrtc::SimulcastLayerList::AddLayerWithAlternatives(std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > const&)': simulcast_description.cc:(.text+0x78): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `webrtc::SimulcastLayerList::operator[](unsigned long) const': simulcast_description.cc:(.text+0x4c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `webrtc::SimulcastLayerList::GetAllLayers() const': simulcast_description.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_description.cc:(.text+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >* std::__Cr::vector<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >, std::__Cr::allocator<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > > >::__emplace_back_slow_path<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > >(std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >&&)': simulcast_description.cc:(.text[_ZNSt4__Cr6vectorINS0_IN6webrtc14SimulcastLayerENS_9allocatorIS2_EEEENS3_IS5_EEE24__emplace_back_slow_pathIJS5_EEEPS5_DpOT_]+0x124): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_description.o): in function `std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >* std::__Cr::vector<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >, std::__Cr::allocator<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > > >::__emplace_back_slow_path<std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > const&>(std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> > const&)': simulcast_description.cc:(.text[_ZNSt4__Cr6vectorINS0_IN6webrtc14SimulcastLayerENS_9allocatorIS2_EEEENS3_IS5_EEE24__emplace_back_slow_pathIJRKS5_EEEPS5_DpOT_]+0x118): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastSdpSerializer::SerializeSimulcastDescription(webrtc::SimulcastDescription const&) const': simulcast_sdp_serializer.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0xc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o):simulcast_sdp_serializer.cc:(.text+0x6c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastSdpSerializer::DeserializeSimulcastDescription(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >) const': simulcast_sdp_serializer.cc:(.text+0x920): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x95c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x970): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x984): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x998): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::(anonymous namespace)::ParseSimulcastLayerList(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': simulcast_sdp_serializer.cc:(.text+0x128): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x67c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x6bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x6dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x6f0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `std::__Cr::enable_if<is_move_constructible<webrtc::RTCErrorOr<webrtc::SimulcastLayerList> >::value&&is_move_assignable<webrtc::RTCErrorOr<webrtc::SimulcastLayerList> >::value, void>::type std::__Cr::swap<webrtc::RTCErrorOr<webrtc::SimulcastLayerList> >(webrtc::RTCErrorOr<webrtc::SimulcastLayerList>&, webrtc::RTCErrorOr<webrtc::SimulcastLayerList>&)': simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr4swapIN6webrtc10RTCErrorOrINS1_18SimulcastLayerListEEEEENS_9enable_ifIXaasr21is_move_constructibleIT_EE5valuesr18is_move_assignableIS6_EE5valueEvE4typeERS6_S9_]+0x200): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastSdpSerializer::SerializeRidDescription(webrtc::MediaContentDescription const&, webrtc::RidDescription const&) const': simulcast_sdp_serializer.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x1ac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x1c0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o):simulcast_sdp_serializer.cc:(.text+0x1d4): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastSdpSerializer::SerializeRidDescription(webrtc::MediaContentDescription const&, webrtc::RidDescription const&) const': simulcast_sdp_serializer.cc:(.text+0x45c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x4ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastSdpSerializer::DeserializeRidDescription(webrtc::MediaContentDescription const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >) const': simulcast_sdp_serializer.cc:(.text+0x294): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x8ec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x9d0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x1094): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x10a8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x10bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x11f4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text+0x121c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `webrtc::SimulcastLayer* std::__Cr::vector<webrtc::SimulcastLayer, std::__Cr::allocator<webrtc::SimulcastLayer> >::__emplace_back_slow_path<webrtc::SimulcastLayer>(webrtc::SimulcastLayer&&)': simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0xc4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14SimulcastLayerENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `std::__Cr::__throw_bad_optional_access()': simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr27__throw_bad_optional_accessEv]+0x14): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(simulcast_sdp_serializer.o): in function `void std::__Cr::__optional_storage_base<webrtc::SimulcastLayerList, false>::__assign_from<std::__Cr::__optional_move_assign_base<webrtc::SimulcastLayerList, false> >(std::__Cr::__optional_move_assign_base<webrtc::SimulcastLayerList, false>&&)': simulcast_sdp_serializer.cc:(.text[_ZNSt4__Cr23__optional_storage_baseIN6webrtc18SimulcastLayerListELb0EE13__assign_fromINS_27__optional_move_assign_baseIS2_Lb0EEEEEvOT_]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o): in function `webrtc::ThreadManager::~ThreadManager()': thread.cc:(.text+0x9c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o):thread.cc:(.text+0xac): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o): in function `webrtc::Thread::SetName(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, void const*)': thread.cc:(.text+0x11c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: thread.cc:(.text+0x168): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: thread.cc:(.text+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o): in function `webrtc::Thread::~Thread()': thread.cc:(.text+0x110): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o): in function `webrtc::Thread::DoDestroy()': thread.cc:(.text+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o): in function `webrtc::Thread::Get(int)': thread.cc:(.text+0x21c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(thread.o):thread.cc:(.text+0x230): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(attribute.o): in function `decltype(auto) std::__Cr::__variant_detail::__visitation::__base::__dispatcher<7ul>::__dispatch<std::__Cr::__variant_detail::__visitation::__variant::__value_visitor<webrtc::(anonymous namespace)::VisitToString>&&, std::__Cr::__variant_detail::__base<(std::__Cr::__variant_detail::_Trait)0, std::__Cr::optional<bool> const*, std::__Cr::optional<int> const*, std::__Cr::optional<unsigned int> const*, std::__Cr::optional<long> const*, std::__Cr::optional<unsigned long> const*, std::__Cr::optional<double> const*, std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::optional<std::__Cr::vector<bool, std::__Cr::allocator<bool> > > const*, std::__Cr::optional<std::__Cr::vector<int, std::__Cr::allocator<int> > > const*, std::__Cr::optional<std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> > > const*, std::__Cr::optional<std::__Cr::vector<long, std::__Cr::allocator<long> > > const*, std::__Cr::optional<std::__Cr::vector<unsigned long, std::__Cr::allocator<unsigned long> > > const*, std::__Cr::optional<std::__Cr::vector<double, std::__Cr::allocator<double> > > const*, std::__Cr::optional<std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const*, std::__Cr::optional<std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, unsigned long, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, unsigned long> > > > const*, std::__Cr::optional<std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, double, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, double> > > > const*> const&>(std::__Cr::__variant_detail::__visitation::__variant::__value_visitor<webrtc::(anonymous namespace)::VisitToString>&&, std::__Cr::__variant_detail::__base<(std::__Cr::__variant_detail::_Trait)0, std::__Cr::optional<bool> const*, std::__Cr::optional<int> const*, std::__Cr::optional<unsigned int> const*, std::__Cr::optional<long> const*, std::__Cr::optional<unsigned long> const*, std::__Cr::optional<double> const*, std::__Cr::optional<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > const*, std::__Cr::optional<std::__Cr::vector<bool, std::__Cr::allocator<bool> > > const*, std::__Cr::optional<std::__Cr::vector<int, std::__Cr::allocator<int> > > const*, std::__Cr::optional<std::__Cr::vector<unsigned int, std::__Cr::allocator<unsigned int> > > const*, std::__Cr::optional<std::__Cr::vector<long, std::__Cr::allocator<long> > > const*, std::__Cr::optional<std::__Cr::vector<unsigned long, std::__Cr::allocator<unsigned long> > > const*, std::__Cr::optional<std::__Cr::vector<double, std::__Cr::allocator<double> > > const*, std::__Cr::optional<std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const*, std::__Cr::optional<std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, unsigned long, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, unsigned long> > > > const*, std::__Cr::optional<std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, double, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, double> > > > const*> const&)': attribute.cc:(.text+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: attribute.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: attribute.cc:(.text+0x104): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: attribute.cc:(.text+0x138): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: attribute.cc:(.text+0x17c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(attribute.o):attribute.cc:(.text+0x3c): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(attribute.o): in function `_ZN6webrtc12_GLOBAL__N_113VisitToString13ValueToStringIlTnNSt4__Cr9enable_ifIXoooosr3stdE9is_same_vIT_lEsr3stdE9is_same_vIS5_mEsr3stdE9is_same_vIS5_dEEbE4typeELb1EEENS3_12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEERKS5_': attribute.cc:(.text+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: attribute.cc:(.text+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(attribute.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::basic_string(char const*, unsigned long)': attribute.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2EPKcm]+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: attribute.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2EPKcm]+0xdc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: attribute.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEC2EPKcm]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(attribute.o):attribute.cc:(.text+0x10c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats_report.o): in function `webrtc::RTCStatsReport::AddStats(std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> >)': rtc_stats_report.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats_report.o): in function `webrtc::RTCStatsReport::ToJson() const': rtc_stats_report.cc:(.text+0x138): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats_report.cc:(.text+0x274): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats_report.cc:(.text+0x2a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: rtc_stats_report.cc:(.text+0x334): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats_report.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > > > >::__tree_deleter::operator()(std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, void*>*)': rtc_stats_report.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10unique_ptrIKN6webrtc8RTCStatsENS_14default_deleteISB_EEEEEENS_19__map_value_compareIS7_NS_4pairIKS7_SE_EENS_4lessIS7_EEEENS5_ISJ_EEE14__tree_deleterclEPNS_11__tree_nodeISF_PvEE]+0x9c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats_report.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > > > >::__emplace_unique<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > > >(std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >&&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >&&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >&&) const': rtc_stats_report.cc:(.text[_ZZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10unique_ptrIKN6webrtc8RTCStatsENS_14default_deleteISB_EEEEEENS_19__map_value_compareIS7_NS_4pairIKS7_SE_EENS_4lessIS7_EEEENS5_ISJ_EEE16__emplace_uniqueIJNSH_IS7_SE_EEEEENSH_INS_15__tree_iteratorISF_PNS_11__tree_nodeISF_PvEElEEbEEDpOT_ENKUlRSI_OSQ_E_clES11_S12_]+0x160): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(rtc_stats_report.o): in function `std::__Cr::__tree<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::__map_value_compare<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > > > >::erase(std::__Cr::__tree_const_iterator<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::RTCStats const, std::__Cr::default_delete<webrtc::RTCStats const> > >, void*>*, long>)': rtc_stats_report.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEENS_10unique_ptrIKN6webrtc8RTCStatsENS_14default_deleteISB_EEEEEENS_19__map_value_compareIS7_NS_4pairIKS7_SE_EENS_4lessIS7_EEEENS5_ISJ_EEE5eraseENS_21__tree_const_iteratorISF_PNS_11__tree_nodeISF_PvEElEE]+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_decoder_multi_channel_opus.o): in function `webrtc::AudioDecoderMultiChannelOpus::AppendSupportedDecoders(std::__Cr::vector<webrtc::AudioCodecSpec, std::__Cr::allocator<webrtc::AudioCodecSpec> >*)': audio_decoder_multi_channel_opus.cc:(.text+0x528): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_decoder_multi_channel_opus.o): in function `webrtc::AudioDecoderMultiChannelOpus::MakeAudioDecoder(webrtc::AudioDecoderMultiChannelOpusConfig, std::__Cr::optional<webrtc::AudioCodecPairId>, webrtc::FieldTrialsView const*)': audio_decoder_multi_channel_opus.cc:(.text+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_decoder_multi_channel_opus.o):audio_decoder_multi_channel_opus.cc:(.text[_ZNSt4__Cr6vectorIN6webrtc14AudioCodecSpecENS_9allocatorIS2_EEE24__emplace_back_slow_pathIJS2_EEEPS2_DpOT_]+0x150): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_coder_opus_common.o): in function `webrtc::GetFormatParameter(webrtc::SdpAudioFormat const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': audio_coder_opus_common.cc:(.text+0x180): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: audio_coder_opus_common.cc:(.text+0x1bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_coder_opus_common.cc:(.text+0x1d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_coder_opus_common.o): in function `std::__Cr::optional<std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> > > webrtc::GetFormatParameter<std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> > >(webrtc::SdpAudioFormat const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': audio_coder_opus_common.cc:(.text+0x134): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::basic_string(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, unsigned long, unsigned long, std::__Cr::allocator<char> const&)' /usr/bin/ld.bfd: audio_coder_opus_common.cc:(.text+0x290): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_coder_opus_common.cc:(.text+0x2a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_coder_opus_common.o): in function `std::__Cr::vector<unsigned char, std::__Cr::allocator<unsigned char> >::emplace_back<unsigned char>(unsigned char&&)::{lambda()#2}::operator()() const': audio_coder_opus_common.cc:(.text[_ZZNSt4__Cr6vectorIhNS_9allocatorIhEEE12emplace_backIJhEEERhDpOT_ENKUlvE0_clEv]+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_config.o): in function `webrtc::AudioEncoderMultiChannelOpusConfig::~AudioEncoderMultiChannelOpusConfig()': audio_encoder_multi_channel_opus_config.cc:(.text+0xb8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_config.o): in function `std::__Cr::vector<int, std::__Cr::allocator<int> >::~vector()': audio_encoder_multi_channel_opus_config.cc:(.text[_ZNSt4__Cr6vectorIiNS_9allocatorIiEEED2Ev]+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_config.o):audio_encoder_multi_channel_opus_config.cc:(.text+0x1d8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(escaping.o): in function `absl::(anonymous namespace)::CUnescapeInternal(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, bool, char*, unsigned long*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': escaping.cc:(.text+0x628): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: escaping.cc:(.text+0x8f8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0x9c0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0xb08): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0xb34): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0xbac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: escaping.cc:(.text+0xbc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: escaping.cc:(.text+0xbd4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(escaping.o): in function `absl::CEscape(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': escaping.cc:(.text+0x124): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0x2e8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: escaping.cc:(.text+0x350): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(escaping.o): in function `absl::(anonymous namespace)::CEscapeInternal(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, bool, bool)': escaping.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0x178): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: escaping.cc:(.text+0x224): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(escaping.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::operator+=(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': escaping.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEpLERKS5_]+0x1c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_encode.o): in function `webrtc::hex_decode_with_delimiter(webrtc::ArrayView<char, -4711l>, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, char)': string_encode.cc:(.text+0x134): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_encode.o): in function `webrtc::tokenize(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, char, std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >*)': string_encode.cc:(.text+0x98): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_encode.o): in function `webrtc::tokenize_first(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, char, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': string_encode.cc:(.text+0x21c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: string_encode.cc:(.text+0x230): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_encode.o): in function `webrtc::split(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, char)': string_encode.cc:(.text+0x158): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(string_encode.o):string_encode.cc:(.text[_ZNSt4__Cr12construct_atINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEJNS_17basic_string_viewIcS3_EEEPS6_EEPT_SB_DpOT0_]+0xd4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o): in function `set_sigalg_prefs(bssl::Array<unsigned short>*, bssl::Span<unsigned short const, 18446744073709551615ul>)': ssl_privkey.cc:(.text+0x21c): undefined reference to `void std::__Cr::__sort<std::__Cr::__less<unsigned short, unsigned short>&, unsigned short*>(unsigned short*, unsigned short*, std::__Cr::__less<unsigned short, unsigned short>&)' /usr/bin/ld.bfd: ssl_privkey.cc:(.text+0x5e8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o): in function `SSL_CTX_set1_sigalgs': ssl_privkey.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o): in function `parse_sigalg_pairs(bssl::Array<unsigned short>*, int const*, unsigned long)': ssl_privkey.cc:(.text+0x2a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o): in function `SSL_set1_sigalgs': ssl_privkey.cc:(.text+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o): in function `SSL_CTX_set1_sigalgs_list': ssl_privkey.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_privkey.o):ssl_privkey.cc:(.text+0x84c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o): in function `webrtc::SSLCertificateStats::Copy() const': ssl_certificate.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_certificate.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_certificate.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o): in function `webrtc::SSLCertificate::GetStats() const': ssl_certificate.cc:(.text+0x1bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: ssl_certificate.cc:(.text+0x1d0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o): in function `webrtc::SSLCertChain::SSLCertChain(std::__Cr::unique_ptr<webrtc::SSLCertificate, std::__Cr::default_delete<webrtc::SSLCertificate> >)': ssl_certificate.cc:(.text+0x5c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o): in function `webrtc::SSLCertChain::operator=(webrtc::SSLCertChain&&)': ssl_certificate.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o): in function `webrtc::SSLCertChain::~SSLCertChain()': ssl_certificate.cc:(.text+0xa4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_certificate.o):ssl_certificate.cc:(.text+0x13c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(ssl_fingerprint.o): in function `webrtc::SSLFingerprint::ToString() const': ssl_fingerprint.cc:(.text+0x4c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_fingerprint.cc:(.text+0x60): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: ssl_fingerprint.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(boringssl_certificate.o): in function `webrtc::BoringSSLCertificate::Generate(webrtc::OpenSSLKeyPair*, webrtc::SSLIdentityParams const&)': boringssl_certificate.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(boringssl_certificate.o): in function `webrtc::BoringSSLCertificate::GetSignatureDigestAlgorithm(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*) const': boringssl_certificate.cc:(.text+0x308): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_digest.o): in function `webrtc::ComputeDigest(webrtc::MessageDigest*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': message_digest.cc:(.text+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: message_digest.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(message_digest.o): in function `webrtc::ComputeHmac(webrtc::MessageDigest*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': message_digest.cc:(.text+0xf4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: message_digest.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_digest.o): in function `webrtc::OpenSSLDigest::GetDigestName(env_md_st const*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': openssl_digest.cc:(.text+0xb0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o): in function `webrtc::SdpAudioFormat::SdpAudioFormat(webrtc::SdpAudioFormat const&)': audio_format.cc:(.text+0x40): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o): in function `webrtc::SdpAudioFormat::SdpAudioFormat(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, unsigned long)': audio_format.cc:(.text+0xec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_format.cc:(.text+0x100): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o): in function `webrtc::SdpAudioFormat::SdpAudioFormat(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, unsigned long, std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > > const&)': audio_format.cc:(.text+0x130): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_format.cc:(.text+0x144): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o): in function `webrtc::SdpAudioFormat::SdpAudioFormat(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, unsigned long, std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::less<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > >&&)': audio_format.cc:(.text+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o):audio_format.cc:(.text+0x134): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_format.o): in function `webrtc::SdpAudioFormat::operator=(webrtc::SdpAudioFormat const&)': audio_format.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: audio_format.cc:(.text+0x78): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o): in function `webrtc::tracing::(anonymous namespace)::InternalAddTraceEvent(char, unsigned char const*, char const*, unsigned long long, int, char const**, unsigned char const*, unsigned long long const*, unsigned char)': event_tracer.cc:(.text+0x2b8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x318): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x510): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o): in function `webrtc::tracing::(anonymous namespace)::EventLogger::Start(_IO_FILE*, bool)': event_tracer.cc:(.text+0x1e4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o): in function `webrtc::tracing::StartInternalCapture(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': event_tracer.cc:(.text+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o):event_tracer.cc:(.text+0x190): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o): in function `void absl::internal_any_invocable::LocalInvoker<false, void, webrtc::tracing::(anonymous namespace)::EventLogger::Start(_IO_FILE*, bool)::{lambda()#1}&&>(absl::internal_any_invocable::TypeErasedState*)': event_tracer.cc:(.text+0x134): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x1d0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x210): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x220): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x240): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o):event_tracer.cc:(.text+0x250): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(event_tracer.o): in function `void absl::internal_any_invocable::LocalInvoker<false, void, webrtc::tracing::(anonymous namespace)::EventLogger::Start(_IO_FILE*, bool)::{lambda()#1}&&>(absl::internal_any_invocable::TypeErasedState*)': event_tracer.cc:(.text+0x284): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x63c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x7f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x80c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x820): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: event_tracer.cc:(.text+0x834): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(platform_thread.o): in function `webrtc::PlatformThread::SpawnThread(absl::AnyInvocable<void () &&>, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, webrtc::ThreadAttributes, bool)': platform_thread.cc:(.text+0x21c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(platform_thread.o):platform_thread.cc:(.text+0x230): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(metrics.o): in function `webrtc::metrics::GetAndReset(std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::metrics::SampleInfo, std::__Cr::default_delete<webrtc::metrics::SampleInfo> >, webrtc::AbslStringViewCmp, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::metrics::SampleInfo, std::__Cr::default_delete<webrtc::metrics::SampleInfo> > > > >*)': metrics.cc:(.text+0x1b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: metrics.cc:(.text+0x290): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: metrics.cc:(.text+0x2a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(metrics.o): in function `webrtc::metrics::(anonymous namespace)::RtcHistogram::RtcHistogram(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, int, int)': metrics.cc:(.text+0x124): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: metrics.cc:(.text+0x138): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(metrics.o): in function `std::__Cr::pair<std::__Cr::__map_iterator<std::__Cr::__tree_iterator<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::metrics::(anonymous namespace)::RtcHistogram, std::__Cr::default_delete<webrtc::metrics::(anonymous namespace)::RtcHistogram> > >, std::__Cr::__tree_node<std::__Cr::__value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::metrics::(anonymous namespace)::RtcHistogram, std::__Cr::default_delete<webrtc::metrics::(anonymous namespace)::RtcHistogram> > >, void*>*, long> >, bool> std::__Cr::map<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::unique_ptr<webrtc::metrics::(anonymous namespace)::RtcHistogram, std::__Cr::default_delete<webrtc::metrics::(anonymous namespace)::RtcHistogram> >, webrtc::AbslStringViewCmp, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, std::__Cr::unique_ptr<webrtc::metrics::(anonymous namespace)::RtcHistogram, std::__Cr::default_delete<webrtc::metrics::(anonymous namespace)::RtcHistogram> > > > >::emplace<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&, webrtc::metrics::(anonymous namespace)::RtcHistogram*&>(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >&, webrtc::metrics::(anonymous namespace)::RtcHistogram*&)': metrics.cc:(.text+0x264): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(metrics.o):metrics.cc:(.text+0x278): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::Add(webrtc::Dispatcher*)': physical_socket_server.cc:(.text+0x54): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::Update(webrtc::Dispatcher*)': physical_socket_server.cc:(.text+0x64): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::Remove(webrtc::Dispatcher*)': physical_socket_server.cc:(.text+0x54): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::~PhysicalSocketServer()': physical_socket_server.cc:(.text+0xcc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `std::__Cr::unordered_map<webrtc::Dispatcher*, unsigned long, std::__Cr::hash<webrtc::Dispatcher*>, std::__Cr::equal_to<webrtc::Dispatcher*>, std::__Cr::allocator<std::__Cr::pair<webrtc::Dispatcher* const, unsigned long> > >::at(webrtc::Dispatcher* const&)': physical_socket_server.cc:(.text[_ZNSt4__Cr13unordered_mapIPN6webrtc10DispatcherEmNS_4hashIS3_EENS_8equal_toIS3_EENS_9allocatorINS_4pairIKS3_mEEEEE2atERSA_]+0x38): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::WaitEpoll(int)': physical_socket_server.cc:(.text+0x29c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `webrtc::PhysicalSocketServer::WaitSelect(int, bool)': physical_socket_server.cc:(.text+0x590): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text+0x5f0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `std::__Cr::__hash_table<std::__Cr::__hash_value_type<unsigned long, webrtc::Dispatcher*>, std::__Cr::__unordered_map_hasher<unsigned long, std::__Cr::pair<unsigned long const, webrtc::Dispatcher*>, std::__Cr::hash<unsigned long>, std::__Cr::equal_to<unsigned long> >, std::__Cr::__unordered_map_equal<unsigned long, std::__Cr::pair<unsigned long const, webrtc::Dispatcher*>, std::__Cr::equal_to<unsigned long>, std::__Cr::hash<unsigned long> >, std::__Cr::allocator<std::__Cr::pair<unsigned long const, webrtc::Dispatcher*> > >::__emplace_unique<unsigned long&, webrtc::Dispatcher*&>(unsigned long&, webrtc::Dispatcher*&)::{lambda(unsigned long const&, unsigned long&, webrtc::Dispatcher*&)#1}::operator()(unsigned long const&, unsigned long&, webrtc::Dispatcher*&) const': physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeImPN6webrtc10DispatcherEEENS_22__unordered_map_hasherImNS_4pairIKmS4_EENS_4hashImEENS_8equal_toImEEEENS_21__unordered_map_equalImS9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRmRS4_EEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x164): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeImPN6webrtc10DispatcherEEENS_22__unordered_map_hasherImNS_4pairIKmS4_EENS_4hashImEENS_8equal_toImEEEENS_21__unordered_map_equalImS9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRmRS4_EEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x1dc): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeImPN6webrtc10DispatcherEEENS_22__unordered_map_hasherImNS_4pairIKmS4_EENS_4hashImEENS_8equal_toImEEEENS_21__unordered_map_equalImS9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRmRS4_EEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x2c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `std::__Cr::__hash_table<std::__Cr::__hash_value_type<webrtc::Dispatcher*, unsigned long>, std::__Cr::__unordered_map_hasher<webrtc::Dispatcher*, std::__Cr::pair<webrtc::Dispatcher* const, unsigned long>, std::__Cr::hash<webrtc::Dispatcher*>, std::__Cr::equal_to<webrtc::Dispatcher*> >, std::__Cr::__unordered_map_equal<webrtc::Dispatcher*, std::__Cr::pair<webrtc::Dispatcher* const, unsigned long>, std::__Cr::equal_to<webrtc::Dispatcher*>, std::__Cr::hash<webrtc::Dispatcher*> >, std::__Cr::allocator<std::__Cr::pair<webrtc::Dispatcher* const, unsigned long> > >::__emplace_unique<webrtc::Dispatcher*&, unsigned long&>(webrtc::Dispatcher*&, unsigned long&)::{lambda(webrtc::Dispatcher* const&, webrtc::Dispatcher*&, unsigned long&)#1}::operator()(webrtc::Dispatcher* const&, webrtc::Dispatcher*&, unsigned long&) const': physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRS4_RmEEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x3c): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRS4_RmEEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x17c): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRS4_RmEEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x1f4): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE16__emplace_uniqueIJRS4_RmEEENS7_INS_15__hash_iteratorIPNS_11__hash_nodeIS5_PvEEEEbEEDpOT_ENKUlRS8_SL_SM_E_clESX_SL_SM_]+0x2e4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `unsigned long std::__Cr::__hash_table<std::__Cr::__hash_value_type<webrtc::Dispatcher*, unsigned long>, std::__Cr::__unordered_map_hasher<webrtc::Dispatcher*, std::__Cr::pair<webrtc::Dispatcher* const, unsigned long>, std::__Cr::hash<webrtc::Dispatcher*>, std::__Cr::equal_to<webrtc::Dispatcher*> >, std::__Cr::__unordered_map_equal<webrtc::Dispatcher*, std::__Cr::pair<webrtc::Dispatcher* const, unsigned long>, std::__Cr::equal_to<webrtc::Dispatcher*>, std::__Cr::hash<webrtc::Dispatcher*> >, std::__Cr::allocator<std::__Cr::pair<webrtc::Dispatcher* const, unsigned long> > >::__erase_unique<webrtc::Dispatcher*>(webrtc::Dispatcher* const&)': physical_socket_server.cc:(.text[_ZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE14__erase_uniqueIS4_EEmRKT_]+0x3c): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: physical_socket_server.cc:(.text[_ZNSt4__Cr12__hash_tableINS_17__hash_value_typeIPN6webrtc10DispatcherEmEENS_22__unordered_map_hasherIS4_NS_4pairIKS4_mEENS_4hashIS4_EENS_8equal_toIS4_EEEENS_21__unordered_map_equalIS4_S9_SD_SB_EENS_9allocatorIS9_EEE14__erase_uniqueIS4_EEmRKT_]+0x130): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(physical_socket_server.o): in function `unsigned long std::__Cr::__hash_table<std::__Cr::__hash_value_type<unsigned long, webrtc::Dispatcher*>, std::__Cr::__unordered_map_hasher<unsigned long, std::__Cr::pair<unsigned long const, webrtc::Dispatcher*>, std::__Cr::hash<unsigned long>, std::__Cr::equal_to<unsigned long> >, std::__Cr::__unordered_map_equal<unsigned long, std::__Cr::pair<unsigned long const, webrtc::Dispatcher*>, std::__Cr::equal_to<unsigned long>, std::__Cr::hash<unsigned long> >, std::__Cr::allocator<std::__Cr::pair<unsigned long const, webrtc::Dispatcher*> > >::__erase_unique<unsigned long>(unsigned long const&)': physical_socket_server.cc:(.text[_ZNSt4__Cr12__hash_tableINS_17__hash_value_typeImPN6webrtc10DispatcherEEENS_22__unordered_map_hasherImNS_4pairIKmS4_EENS_4hashImEENS_8equal_toImEEEENS_21__unordered_map_equalImS9_SD_SB_EENS_9allocatorIS9_EEE14__erase_uniqueImEEmRKT_]+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(async_dns_resolver.o): in function `webrtc::AsyncDnsResolver::~AsyncDnsResolver()': async_dns_resolver.cc:(.text+0x154): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(async_dns_resolver.o): in function `webrtc::AsyncDnsResolverResultImpl::~AsyncDnsResolverResultImpl()': async_dns_resolver.cc:(.text[_ZN6webrtc26AsyncDnsResolverResultImplD2Ev]+0xb4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(async_dns_resolver.o): in function `webrtc::AsyncDnsResolverResultImpl::~AsyncDnsResolverResultImpl()': async_dns_resolver.cc:(.text[_ZN6webrtc26AsyncDnsResolverResultImplD0Ev]+0xa8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(async_dns_resolver.o):async_dns_resolver.cc:(.text+0x274): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_adapter.o): in function `webrtc::OpenSSLAdapter::StartSSL(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': openssl_adapter.cc:(.text+0x34): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_adapter.cc:(.text+0x104): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_adapter.o): in function `webrtc::OpenSSLAdapter::BeginSSL()': openssl_adapter.cc:(.text+0x218): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_adapter.cc:(.text+0x240): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_adapter.o): in function `webrtc::TransformAlpnProtocols(std::__Cr::vector<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::allocator<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > > const&)': openssl_adapter.cc:(.text+0x120): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_adapter.o): in function `webrtc::OpenSSLAdapter::SSLInfoCallback(ssl_st const*, int, int)': openssl_adapter.cc:(.text+0x1f0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_adapter.o): in function `webrtc::OpenSSLAdapter::SSLVerifyInternal(int, ssl_st*, x509_store_ctx_st*)': openssl_adapter.cc:(.text+0x38c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: openssl_adapter.cc:(.text+0x3a0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_session_cache.o): in function `webrtc::OpenSSLSessionCache::AddSession(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, ssl_session_st*)': openssl_session_cache.cc:(.text+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: openssl_session_cache.cc:(.text+0x1d4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_session_cache.o):openssl_session_cache.cc:(.text[_ZNSt4__Cr6__treeINS_12__value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEP14ssl_session_stEENS_19__map_value_compareIS7_NS_4pairIKS7_S9_EEN6webrtc17AbslStringViewCmpEEENS5_ISE_EEE14__tree_deleterclEPNS_11__tree_nodeISA_PvEE]+0x84): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_stream_adapter.o): in function `webrtc::OpenSSLStreamAdapter::SetDtlsSrtpCryptoSuites(std::__Cr::vector<int, std::__Cr::allocator<int> > const&)': openssl_stream_adapter.cc:(.text+0x98): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text+0xb8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text+0x16c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text+0x178): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_stream_adapter.o): in function `webrtc::OpenSSLStreamAdapter::SSLVerifyCallback(ssl_st*, unsigned char*)': openssl_stream_adapter.cc:(.text+0x280): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text+0x294): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_stream_adapter.o): in function `webrtc::BufferT<unsigned char, false>::operator std::__Cr::enable_if<internal::BufferCompat<unsigned char, char>::value, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > >::type<unsigned char>() const': openssl_stream_adapter.cc:(.text[_ZNK6webrtc7BufferTIhLb0EEcvNSt4__Cr9enable_ifIXsr8internal12BufferCompatIT_cEE5valueENS2_17basic_string_viewIcNS2_11char_traitsIcEEEEE4typeEIhEEv]+0x3c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: openssl_stream_adapter.cc:(.text[_ZNK6webrtc7BufferTIhLb0EEcvNSt4__Cr9enable_ifIXsr8internal12BufferCompatIT_cEE5valueENS2_17basic_string_viewIcNS2_11char_traitsIcEEEEE4typeEIhEEv]+0x50): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(openssl_stream_adapter.o):openssl_stream_adapter.cc:(.text[_ZNSt4__Cr6vectorItNS_9allocatorItEEE18__assign_with_sizeINS_17_ClassicAlgPolicyEPtS6_EEvT0_T1_l]+0x17c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(aec_dump.o): in function `webrtc::InternalAPMConfig::InternalAPMConfig(webrtc::InternalAPMConfig const&)': aec_dump.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(aec_dump.o): in function `webrtc::InternalAPMConfig::operator=(webrtc::InternalAPMConfig const&)': aec_dump.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: aec_dump.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(gain_controller2.o): in function `webrtc::GainController2::Process(bool, webrtc::AudioBuffer*)': gain_controller2.cc:(.text+0x438): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: gain_controller2.cc:(.text+0x44c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(input_volume_controller.o): in function `webrtc::InputVolumeController::InputVolumeController(int, webrtc::InputVolumeController::Config const&)': input_volume_controller.cc:(.text+0x270): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: input_volume_controller.cc:(.text+0x284): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(input_volume_controller.o): in function `webrtc::InputVolumeController::~InputVolumeController()': input_volume_controller.cc:(.text+0xb4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(input_volume_controller.o):input_volume_controller.cc:(.text+0xf8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(aec_dump_impl.o): in function `webrtc::AecDumpImpl::WriteRenderStreamMessage(webrtc::AudioFrameView<float const> const&)': aec_dump_impl.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: aec_dump_impl.cc:(.text+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(aec_dump_impl.o): in function `webrtc::AecDumpImpl::WriteRenderStreamMessage(float const* const*, int, int)': aec_dump_impl.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: aec_dump_impl.cc:(.text+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(capture_stream_info.o): in function `webrtc::CaptureStreamInfo::AddInputChannel(webrtc::ArrayView<float const, -4711l>)': capture_stream_info.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: capture_stream_info.cc:(.text+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(capture_stream_info.o): in function `webrtc::CaptureStreamInfo::AddOutputChannel(webrtc::ArrayView<float const, -4711l>)': capture_stream_info.cc:(.text+0x6c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: capture_stream_info.cc:(.text+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(capture_stream_info.o): in function `webrtc::CaptureStreamInfo::AddInput(short const*, int, int)': capture_stream_info.cc:(.text+0xa8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: capture_stream_info.cc:(.text+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(capture_stream_info.o): in function `webrtc::CaptureStreamInfo::AddOutput(short const*, int, int)': capture_stream_info.cc:(.text+0xa8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: capture_stream_info.cc:(.text+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arena.o):arena.cc:(.text+0x164): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arenastring.o): in function `google::protobuf::internal::ArenaStringPtr::Set(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, google::protobuf::Arena*)': arenastring.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: arenastring.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arenastring.o): in function `void google::protobuf::internal::ArenaStringPtr::Set<>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, google::protobuf::Arena*)': arenastring.cc:(.text+0xa0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: arenastring.cc:(.text+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arenastring.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >* google::protobuf::internal::ArenaStringPtr::MutableSlow<google::protobuf::internal::LazyString>(google::protobuf::Arena*, google::protobuf::internal::LazyString const&)': arenastring.cc:(.text[_ZN6google8protobuf8internal14ArenaStringPtr11MutableSlowIJNS1_10LazyStringEEEEPNSt4__Cr12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEPNS0_5ArenaEDpRKT_]+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: arenastring.cc:(.text[_ZN6google8protobuf8internal14ArenaStringPtr11MutableSlowIJNS1_10LazyStringEEEEPNSt4__Cr12basic_stringIcNS5_11char_traitsIcEENS5_9allocatorIcEEEEPNS0_5ArenaEDpRKT_]+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arenastring.o): in function `google::protobuf::internal::ArenaStringPtr::Release()': arenastring.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arenastring.o): in function `google::protobuf::internal::ArenaStringPtr::ClearToDefault(google::protobuf::internal::LazyString const&, google::protobuf::Arena*)': arenastring.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: arenastring.cc:(.text+0x94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::EpsCopyInputStream::ReadStringFallback(char const*, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': parse_context.cc:(.text+0x88): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0xac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::EpsCopyInputStream::VerifyUTF8(char const*, unsigned long)': parse_context.cc:(.text+0x88): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x9c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::EpsCopyInputStream::AppendStringFallback(char const*, int, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': parse_context.cc:(.text+0x68): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0xf4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::EpsCopyInputStream::ReadCordFallback(char const*, int, absl::Cord*)': parse_context.cc:(.text+0x384): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x398): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::WriteLengthDelimited(unsigned int, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': parse_context.cc:(.text+0x2a8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::StringParser(char const*, char const*, void*, google::protobuf::internal::ParseContext*)': parse_context.cc:(.text+0x24): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::VerifyUTF8(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, char const*)': parse_context.cc:(.text+0x78): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::EpsCopyInputStream::VerifyUTF8Fallback(char const*, unsigned long)::$_0::operator()(char const*, int) const': parse_context.cc:(.text+0x174): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <google::protobuf::RepeatedField<unsigned int>*>(google::protobuf::RepeatedField<unsigned int>* const&)': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldIjEEEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <google::protobuf::RepeatedField<int>*>(google::protobuf::RepeatedField<int>* const&)': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldIiEEEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <google::protobuf::RepeatedField<unsigned long>*>(google::protobuf::RepeatedField<unsigned long>* const&)': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldImEEEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <google::protobuf::RepeatedField<long>*>(google::protobuf::RepeatedField<long>* const&)': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldIlEEEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <google::protobuf::RepeatedField<float>*>(google::protobuf::RepeatedField<float>* const&)': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldIfEEEERS1_RKT_]+0x50): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o):parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsIPN6google8protobuf13RepeatedFieldIdEEEERS1_RKT_]+0x50): more undefined references to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::UnknownFieldLiteParserHelper::AddFixed64(unsigned int, unsigned long)': parse_context.cc:(.text[_ZN6google8protobuf8internal28UnknownFieldLiteParserHelper10AddFixed64Ejm]+0x180): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::UnknownFieldLiteParserHelper::ParseLengthDelimited(unsigned int, char const*, google::protobuf::internal::ParseContext*)': parse_context.cc:(.text[_ZN6google8protobuf8internal28UnknownFieldLiteParserHelper20ParseLengthDelimitedEjPKcPNS1_12ParseContextE]+0x3ac): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <13>(char const (&) [13])': parse_context.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi13EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::UnknownFieldLiteParserHelper::AddFixed32(unsigned int, unsigned int)': parse_context.cc:(.text[_ZN6google8protobuf8internal28UnknownFieldLiteParserHelper10AddFixed32Ejj]+0x170): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::MicroString::SetInChunks<google::protobuf::internal::EpsCopyInputStream::ReadMicroStringFallback(char const*, int, google::protobuf::internal::MicroString&, google::protobuf::Arena*)::$_0>(unsigned long, google::protobuf::Arena*, google::protobuf::internal::EpsCopyInputStream::ReadMicroStringFallback(char const*, int, google::protobuf::internal::MicroString&, google::protobuf::Arena*)::$_0, unsigned long)::{lambda(google::protobuf::internal::MicroString::StringRep*)#1}::operator()(google::protobuf::internal::MicroString::StringRep*) const': parse_context.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x164): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parse_context.o): in function `google::protobuf::internal::MicroString::SetInChunks<google::protobuf::internal::EpsCopyInputStream::ReadMicroStringFallback(char const*, int, google::protobuf::internal::MicroString&, google::protobuf::Arena*)::$_0>(unsigned long, google::protobuf::Arena*, google::protobuf::internal::EpsCopyInputStream::ReadMicroStringFallback(char const*, int, google::protobuf::internal::MicroString&, google::protobuf::Arena*)::$_0, unsigned long)::{lambda(char*)#1}::operator()(char*) const': parse_context.cc:(.text+0x140): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: parse_context.cc:(.text+0x154): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(repeated_ptr_field.o): in function `google::protobuf::internal::CloneSlow(google::protobuf::Arena*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': repeated_ptr_field.cc:(.text+0x74): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(repeated_ptr_field.o): in function `void google::protobuf::internal::RepeatedPtrFieldBase::MergeFrom<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(google::protobuf::internal::RepeatedPtrFieldBase const&, google::protobuf::Arena*)': repeated_ptr_field.cc:(.text+0x108): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: repeated_ptr_field.cc:(.text+0x154): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: repeated_ptr_field.cc:(.text+0x164): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: repeated_ptr_field.cc:(.text+0x1d0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(wire_format_lite.o): in function `google::protobuf::internal::WireFormatLite::VerifyUtf8String(char const*, int, google::protobuf::internal::WireFormatLite::Operation, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': wire_format_lite.cc:(.text+0xa4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: wire_format_lite.cc:(.text+0xb8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<bool, bool>(bool, bool, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x13c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(bool)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x15c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(bool)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIbbEEPKcT_T0_S3_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::CheckOpMessageBuilder::NewString()': check_op.cc:(.text+0x38): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<long, long>(long, long, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x13c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x15c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIllEEPKcT_T0_S3_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned long, unsigned long>(unsigned long, unsigned long, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x13c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x15c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImmEEPKcT_T0_S3_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<float, float>(float, float, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x30): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x34): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x13c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(float)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x15c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(float)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIffEEPKcT_T0_S3_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<double, double>(double, double, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x30): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x34): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x13c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(double)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x15c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(double)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIddEEPKcT_T0_S3_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<char, char>(char, char, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x80): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x84): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xbc): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xd4): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xdc): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xec): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xf0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0xfc): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x1ac): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x220): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x250): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x2a0): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x2ac): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIccEEPKcT_T0_S3_]+0x2b4): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::MakeCheckOpValueString(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, char)': check_op.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned char, unsigned char>(unsigned char, unsigned char, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x80): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x84): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xbc): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xd4): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xdc): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xec): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xf0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0xfc): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x1ac): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x220): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x250): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x2a0): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x2ac): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhhEEPKcT_T0_S3_]+0x2b4): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::MakeCheckOpValueString(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, unsigned char)': check_op.cc:(.text+0x8c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x1b0): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x1fc): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x208): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr12basic_stringIcNS2_11char_traitsIcEENS2_9allocatorIcEEEESA_EEPKcT_T0_SC_]+0x210): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&>(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> > const&, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x188): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x1d4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x1e0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIRKNSt4__Cr17basic_string_viewIcNS2_11char_traitsIcEEEES8_EEPKcT_T0_SA_]+0x1e8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<char const*, char const*>(char const*, char const*, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x1b8): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x204): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x210): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKcS3_EES3_T_T0_S3_]+0x218): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<signed char const*, signed char const*>(signed char const*, signed char const*, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x1b8): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x204): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x210): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKaS3_EEPKcT_T0_S5_]+0x218): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned char const*, unsigned char const*>(unsigned char const*, unsigned char const*, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x1b8): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x204): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x210): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKhS3_EEPKcT_T0_S5_]+0x218): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `char const* absl::log_internal::MakeCheckOpString<void const*, void const*>(void const*, void const*, char const*)': check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x2c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x30): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x70): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x74): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xa8): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xd8): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xdc): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0xe8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x140): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x17c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x1c4): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x214): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x220): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIPKvS3_EEPKcT_T0_S5_]+0x228): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::MakeCheckOpValueString(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, void const*)': check_op.cc:(.text+0x8): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(void const*)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::CheckOpMessageBuilder::CheckOpMessageBuilder(char const*)': check_op.cc:(.text+0x18): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x1c): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x24): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x28): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x60): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: check_op.cc:(.text+0x7c): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x80): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0x90): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: check_op.cc:(.text+0x94): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: check_op.cc:(.text+0xa0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::MakeCheckOpValueString(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, signed char)': check_op.cc:(.text+0x94): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `absl::log_internal::detect_specialization::StringifySink::Append(unsigned long, char)': check_op.cc:(.text+0x30): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::put(char)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >& std::__Cr::__put_character_sequence<char, std::__Cr::char_traits<char> >(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, char const*, unsigned long)': check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x3c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::sentry::sentry(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x90): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x94): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x9c): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0xa0): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0xbc): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x108): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr24__put_character_sequenceIcNS_11char_traitsIcEEEERNS_13basic_ostreamIT_T0_EES7_PKS4_m]+0x110): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::sentry::~sentry()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(check_op.o): in function `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_buf_ptrs()': check_op.cc:(.text[_ZNSt4__Cr15basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE15__init_buf_ptrsEv]+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: check_op.cc:(.text[_ZNSt4__Cr15basic_stringbufIcNS_11char_traitsIcEENS_9allocatorIcEEE15__init_buf_ptrsEv]+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_sink_set.o): in function `absl::log_internal::LogToSinks(absl::LogEntry const&, absl::Span<absl::LogSink*>, bool)': log_sink_set.cc:(.text+0x140): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: log_sink_set.cc:(.text+0x154): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_sink_set.o): in function `absl::log_internal::(anonymous namespace)::GlobalLogSinkSet::AddLogSink(absl::LogSink*)': log_sink_set.cc:(.text+0x150): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(log_sink_set.o):log_sink_set.cc:(.text+0x174): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(globals.o): in function `absl::SetAndroidNativeTag(char const*)': globals.cc:(.text+0xb4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: globals.cc:(.text+0x114): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(strerror.o): in function `absl::base_internal::StrError(int)': strerror.cc:(.text+0xec): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_impl.o): in function `webrtc::AudioEncoderMultiChannelOpusImpl::RecreateEncoderInstance(webrtc::AudioEncoderMultiChannelOpusConfig const&)': audio_encoder_multi_channel_opus_impl.cc:(.text+0xc8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_impl.o): in function `webrtc::AudioEncoderMultiChannelOpusImpl::~AudioEncoderMultiChannelOpusImpl()': audio_encoder_multi_channel_opus_impl.cc:(.text+0x9c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_impl.o): in function `webrtc::AudioEncoderMultiChannelOpusImpl::SdpToConfig(webrtc::SdpAudioFormat const&)': audio_encoder_multi_channel_opus_impl.cc:(.text+0x4a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_encoder_multi_channel_opus_impl.cc:(.text+0x6d8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: audio_encoder_multi_channel_opus_impl.cc:(.text+0x6ec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_encoder_multi_channel_opus_impl.o):audio_encoder_multi_channel_opus_impl.cc:(.text+0x240): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(escaping.o): in function `absl::strings_internal::CalculateBase64EscapedLenInternal(unsigned long, bool)': escaping.cc:(.text+0xa8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(stringify_sink.o): in function `absl::strings_internal::StringifySink::Append(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': stringify_sink.cc:(.text+0x4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(sysinfo.o): in function `void absl::base_internal::CallOnceImpl<absl::base_internal::NumCPUs()::$_0>(std::__Cr::atomic<unsigned int>*, absl::base_internal::SchedulingMode, absl::base_internal::NumCPUs()::$_0&&)': sysinfo.cc:(.text+0x4c): undefined reference to `std::__Cr::thread::hardware_concurrency()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arg.o): in function `bool absl::str_format_internal::ConvertIntArg<char>(char, absl::str_format_internal::FormatConversionSpecImpl, absl::str_format_internal::FormatSinkImpl*)': arg.cc:(.text[_ZN4absl19str_format_internal13ConvertIntArgIcEEbT_NS0_24FormatConversionSpecImplEPNS0_14FormatSinkImplE]+0x310): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: arg.cc:(.text[_ZN4absl19str_format_internal13ConvertIntArgIcEEbT_NS0_24FormatConversionSpecImplEPNS0_14FormatSinkImplE]+0x324): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arg.o): in function `absl::str_format_internal::(anonymous namespace)::ConvertWCharTImpl(wchar_t, absl::str_format_internal::FormatConversionSpecImpl, absl::str_format_internal::FormatSinkImpl*)': arg.cc:(.text+0x12c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: arg.cc:(.text+0x140): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arg.o): in function `absl::str_format_internal::(anonymous namespace)::ConvertIntImplInnerSlow(absl::str_format_internal::(anonymous namespace)::IntDigits const&, absl::str_format_internal::FormatConversionSpecImpl, absl::str_format_internal::FormatSinkImpl*)': arg.cc:(.text+0x37c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(arg.o):arg.cc:(.text+0x390): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(bind.o): in function `absl::str_format_internal::Streamable::Print(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&) const': bind.cc:(.text+0x54): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(bind.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::erase(unsigned long, unsigned long)': bind.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE5eraseEmm]+0x34): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(bind.o): in function `void absl::str_format_internal::FormatRawSinkImpl::Flush<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(void*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': bind.cc:(.text[_ZN4absl19str_format_internal17FormatRawSinkImpl5FlushINSt4__Cr12basic_stringIcNS3_11char_traitsIcEENS3_9allocatorIcEEEEEEvPvNS3_17basic_string_viewIcS6_EE]+0x4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(bind.o): in function `absl::str_format_internal::(anonymous namespace)::ConverterConsumer<absl::str_format_internal::(anonymous namespace)::SummarizingConverter>::ConvertOne(absl::str_format_internal::UnboundConversion const&, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': bind.cc:(.text+0x148): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x158): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x190): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x198): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x1d4): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: bind.cc:(.text+0x1dc): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x1f0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x204): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: bind.cc:(.text+0x208): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x214): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x2a4): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: bind.cc:(.text+0x30c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: bind.cc:(.text+0x32c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(int)' /usr/bin/ld.bfd: bind.cc:(.text+0x380): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: bind.cc:(.text+0x3e8): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x3f0): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: bind.cc:(.text+0x42c): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: bind.cc:(.text+0x438): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: bind.cc:(.text+0x440): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: bind.cc:(.text+0x514): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: bind.cc:(.text+0x528): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(bind.o): in function `void absl::str_format_internal::FormatRawSinkImpl::Flush<std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> > >(void*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': bind.cc:(.text[_ZN4absl19str_format_internal17FormatRawSinkImpl5FlushINSt4__Cr13basic_ostreamIcNS3_11char_traitsIcEEEEEEvPvNS3_17basic_string_viewIcS6_EE]+0x4): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::write(char const*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension.o): in function `absl::str_format_internal::FlagsToString(absl::str_format_internal::Flags)': extension.cc:(.text+0x48): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: extension.cc:(.text+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: extension.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: extension.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: extension.cc:(.text+0xc8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension.o): in function `absl::str_format_internal::FormatSinkImpl::PutPaddedString(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, int, int, bool)': extension.cc:(.text+0x184): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: extension.cc:(.text+0x198): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(float_conversion.o): in function `absl::str_format_internal::ConvertFloatImpl(long double, absl::str_format_internal::FormatConversionSpecImpl const&, absl::str_format_internal::FormatSinkImpl*)': float_conversion.cc:(.text+0xac8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: float_conversion.cc:(.text+0xadc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(float_conversion.o): in function `bool absl::str_format_internal::(anonymous namespace)::FloatToSink<double>(double, absl::str_format_internal::FormatConversionSpecImpl const&, absl::str_format_internal::FormatSinkImpl*)': float_conversion.cc:(.text+0x9b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(float_conversion.o):float_conversion.cc:(.text+0x9c8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parser.o): in function `std::__Cr::__hash_table<int, std::__Cr::hash<int>, std::__Cr::equal_to<int>, std::__Cr::allocator<int> >::__emplace_unique<int const&>(int const&)::{lambda(int const&, int const&)#1}::operator()(int const&, int const&) const': parser.cc:(.text[_ZZNSt4__Cr12__hash_tableIiNS_4hashIiEENS_8equal_toIiEENS_9allocatorIiEEE16__emplace_uniqueIJRKiEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIiPvEEEEbEEDpOT_ENKUlSA_SA_E_clESA_SA_]+0x158): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: parser.cc:(.text[_ZZNSt4__Cr12__hash_tableIiNS_4hashIiEENS_8equal_toIiEENS_9allocatorIiEEE16__emplace_uniqueIJRKiEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIiPvEEEEbEEDpOT_ENKUlSA_SA_E_clESA_SA_]+0x1d0): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: parser.cc:(.text[_ZZNSt4__Cr12__hash_tableIiNS_4hashIiEENS_8equal_toIiEENS_9allocatorIiEEE16__emplace_uniqueIJRKiEEENS_4pairINS_15__hash_iteratorIPNS_11__hash_nodeIiPvEEEEbEEDpOT_ENKUlSA_SA_E_clESA_SA_]+0x2b8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(parser.o): in function `std::__Cr::vector<absl::str_format_internal::ParsedFormatBase::ConversionItem, std::__Cr::allocator<absl::str_format_internal::ParsedFormatBase::ConversionItem> >::emplace_back<absl::str_format_internal::ParsedFormatBase::ConversionItem>(absl::str_format_internal::ParsedFormatBase::ConversionItem&&)::{lambda()#2}::operator()() const': parser.cc:(.text[_ZZNSt4__Cr6vectorIN4absl19str_format_internal16ParsedFormatBase14ConversionItemENS_9allocatorIS4_EEE12emplace_backIJS4_EEERS4_DpOT_ENKUlvE0_clEv]+0xf0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_lib.o): in function `bssl::DTLS1_STATE::~DTLS1_STATE()': d1_lib.cc:(.text+0x244): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_lib.o): in function `void bssl::Delete<bssl::DTLSIncomingMessage>(bssl::DTLSIncomingMessage*)': d1_lib.cc:(.text[_ZN4bssl6DeleteINS_19DTLSIncomingMessageEEEvPT_]+0xa0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_lib.o): in function `void bssl::Delete<bssl::DTLSReadEpoch>(bssl::DTLSReadEpoch*)': d1_lib.cc:(.text[_ZN4bssl6DeleteINS_13DTLSReadEpochEEEvPT_]+0xa8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_lib.o):d1_lib.cc:(.text[_ZN4bssl6DeleteINS_17DTLSPrevReadEpochEEEvPT_]+0xa8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::tls1_check_duplicate_extensions(cbs_st const*)': extensions.cc:(.text+0xf8): undefined reference to `void std::__Cr::__sort<std::__Cr::__less<unsigned short, unsigned short>&, unsigned short*>(unsigned short*, unsigned short*, std::__Cr::__less<unsigned short, unsigned short>&)' /usr/bin/ld.bfd: extensions.cc:(.text+0x248): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ssl_setup_key_shares(bssl::SSL_HANDSHAKE*, unsigned short)': extensions.cc:(.text+0x390): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ssl_ext_key_share_parse_serverhello(bssl::SSL_HANDSHAKE*, bssl::Array<unsigned char>*, unsigned char*, cbs_st*)': extensions.cc:(.text+0x1c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ssl_setup_pake_shares(bssl::SSL_HANDSHAKE*)': extensions.cc:(.text+0x2b8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ssl_setup_extension_permutation(bssl::SSL_HANDSHAKE*)': extensions.cc:(.text+0x12c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o):extensions.cc:(.text+0x3f0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::cert_compression_parse_clienthello(bssl::SSL_HANDSHAKE*, unsigned char*, cbs_st*)': extensions.cc:(.text+0x178): undefined reference to `void std::__Cr::__sort<std::__Cr::__less<unsigned short, unsigned short>&, unsigned short*>(unsigned short*, unsigned short*, std::__Cr::__less<unsigned short, unsigned short>&)' /usr/bin/ld.bfd: extensions.cc:(.text+0x2bc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ext_pake_parse_clienthello(bssl::SSL_HANDSHAKE*, unsigned char*, cbs_st*)': extensions.cc:(.text+0x43c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ext_trust_anchors_add_clienthello(bssl::SSL_HANDSHAKE const*, cbb_st*, cbb_st*, bssl::ssl_client_hello_type_t)': extensions.cc:(.text+0xc4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ext_trust_anchors_parse_serverhello(bssl::SSL_HANDSHAKE*, unsigned char*, cbs_st*)': extensions.cc:(.text+0x238): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o): in function `bssl::ext_trust_anchors_parse_clienthello(bssl::SSL_HANDSHAKE*, unsigned char*, cbs_st*)': extensions.cc:(.text+0x244): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extensions.o):extensions.cc:(.text+0x258): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o): in function `absl::Time::In(absl::TimeZone) const': time.cc:(.text+0xd0): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o): in function `absl::FromChrono(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long long, std::__Cr::ratio<1l, 1000000l> > > const&)': time.cc:(.text+0x18): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o): in function `absl::ToChronoTime(absl::Time)': time.cc:(.text+0x44): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o): in function `absl::TimeZone::At(absl::Time) const': time.cc:(.text+0xd8): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o): in function `absl::(anonymous namespace)::MakeTimeWithOverflow(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > > const&, absl::time_internal::cctz::detail::civil_time<absl::time_internal::cctz::detail::second_tag> const&, absl::time_internal::cctz::time_zone const&, bool*)': time.cc:(.text+0x17c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time.o):time.cc:(.text+0x28): more undefined references to `std::__Cr::chrono::system_clock::from_time_t(long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::NewTree(char const*, unsigned long, unsigned long)': cord.cc:(.text+0x148): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord.cc:(.text+0x15c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::InlineRep::AppendArray(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, absl::cord_internal::CordzUpdateTracker::MethodIdentifier)': cord.cc:(.text+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `void absl::Cord::AppendImpl<absl::Cord const&>(absl::Cord const&)': cord.cc:(.text[_ZN4absl4Cord10AppendImplIRKS0_EEvOT_]+0x37c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `void absl::Cord::AppendImpl<absl::Cord>(absl::Cord&&)': cord.cc:(.text[_ZN4absl4Cord10AppendImplIS0_EEvOT_]+0x388): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o):cord.cc:(.text+0x180): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::RemovePrefix(unsigned long)': cord.cc:(.text+0x228): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::AlphaNum::AlphaNum(unsigned long)': cord.cc:(.text[_ZN4absl8AlphaNumC2Em]+0x5c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord.cc:(.text[_ZN4absl8AlphaNumC2Em]+0x70): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::RemoveSuffix(unsigned long)': cord.cc:(.text+0x264): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::SetExpectedChecksum(unsigned int)': cord.cc:(.text+0x10c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::GetFlatAux(absl::cord_internal::CordRep*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >*)': cord.cc:(.text+0x168): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord.cc:(.text+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::ChunkIterator::AdvanceAndReadBytes(unsigned long)': cord.cc:(.text+0x3e0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::cord_internal::CordRepBtreeReader::Next()': cord.cc:(.text[_ZN4absl13cord_internal18CordRepBtreeReader4NextEv]+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o):cord.cc:(.text[_ZN4absl13cord_internal18CordRepBtreeReader4NextEv]+0xf4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::operator<<(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, absl::Cord const&)': cord.cc:(.text+0x80): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::write(char const*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::strings_internal::CordTestAccess::LengthToTag(unsigned long)': cord.cc:(.text+0xdc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::~basic_string()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::cord_internal::CordRepExternalImpl<absl::CordRepFromString(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >&&)::StringReleaser>::Release(absl::cord_internal::CordRepExternal*)': cord.cc:(.text+0x70): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord.cc:(.text+0x84): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::Cord::ChunkIterator::ChunkIterator(absl::Cord const*)': cord.cc:(.text[_ZN4absl4Cord13ChunkIteratorC2EPKS0_]+0x120): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord.cc:(.text[_ZN4absl4Cord13ChunkIteratorC2EPKS0_]+0x134): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o): in function `absl::cord_internal::CordRepBtreeReader::Init(absl::cord_internal::CordRepBtree*)': cord.cc:(.text[_ZN4absl13cord_internal18CordRepBtreeReader4InitEPNS0_12CordRepBtreeE]+0xec): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord.o):cord.cc:(.text[_ZN4absl13cord_internal18CordRepBtreeReader4InitEPNS0_12CordRepBtreeE]+0x100): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o): in function `absl::cord_internal::(anonymous namespace)::DumpAll(absl::cord_internal::CordRep const*, bool, std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, unsigned long)': cord_rep_btree.cc:(.text+0x2dc): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0x2f4): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0x348): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0x3c0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0x424): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o):cord_rep_btree.cc:(.text+0x43c): more undefined references to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o): in function `absl::cord_internal::(anonymous namespace)::DumpAll(absl::cord_internal::CordRep const*, bool, std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, unsigned long)': cord_rep_btree.cc:(.text+0x530): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o): in function `absl::cord_internal::CordRepBtree::IsFlat(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >*) const': cord_rep_btree.cc:(.text+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o): in function `absl::cord_internal::CordRepBtree::IsFlat(unsigned long, unsigned long, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >*) const': cord_rep_btree.cc:(.text+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: cord_rep_btree.cc:(.text+0xfc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(cord_rep_btree.o):cord_rep_btree.cc:(.text+0xc4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(duration.o): in function `absl::FormatDuration(absl::Duration)': duration.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*)' /usr/bin/ld.bfd: duration.cc:(.text+0x9c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: duration.cc:(.text+0x104): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: duration.cc:(.text+0x1c4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: duration.cc:(.text+0x1d8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: duration.cc:(.text+0x28c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(duration.o):duration.cc:(.text+0x2a0): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_lookup.o): in function `absl::time_internal::cctz::time_zone::name() const': time_zone_lookup.cc:(.text+0x64): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(file_wrapper.o): in function `webrtc::(anonymous namespace)::FileOpen(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, bool, int*)': file_wrapper.cc:(.text+0x15c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: file_wrapper.cc:(.text+0x170): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(echo_canceller3.o): in function `webrtc::EchoCanceller3::RenderWriter::RenderWriter(webrtc::ApmDataDumper*, webrtc::EchoCanceller3Config const&, webrtc::SwapQueue<std::__Cr::vector<std::__Cr::vector<std::__Cr::vector<float, std::__Cr::allocator<float> >, std::__Cr::allocator<std::__Cr::vector<float, std::__Cr::allocator<float> > > >, std::__Cr::allocator<std::__Cr::vector<std::__Cr::vector<float, std::__Cr::allocator<float> >, std::__Cr::allocator<std::__Cr::vector<float, std::__Cr::allocator<float> > > > > >, webrtc::Aec3RenderQueueItemVerifier>*, unsigned long, unsigned long)': echo_canceller3.cc:(.text+0x27c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: echo_canceller3.cc:(.text+0x290): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(echo_canceller3.o): in function `std::__Cr::vector<std::__Cr::vector<float, std::__Cr::allocator<float> >, std::__Cr::allocator<std::__Cr::vector<float, std::__Cr::allocator<float> > > >::vector(unsigned long, std::__Cr::vector<float, std::__Cr::allocator<float> > const&)': echo_canceller3.cc:(.text[_ZNSt4__Cr6vectorINS0_IfNS_9allocatorIfEEEENS1_IS3_EEEC2EmRKS3_]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(echo_canceller3.o):echo_canceller3.cc:(.text+0x1c4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(interpolated_gain_curve.o): in function `webrtc::InterpolatedGainCurve::InterpolatedGainCurve(webrtc::ApmDataDumper*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': interpolated_gain_curve.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: interpolated_gain_curve.cc:(.text+0x90): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: interpolated_gain_curve.cc:(.text+0xe4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: interpolated_gain_curve.cc:(.text+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: interpolated_gain_curve.cc:(.text+0x154): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(interpolated_gain_curve.o):interpolated_gain_curve.cc:(.text+0x168): more undefined references to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(interpolated_gain_curve.o): in function `webrtc::InterpolatedGainCurve::InterpolatedGainCurve(webrtc::ApmDataDumper*, std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >)': interpolated_gain_curve.cc:(.text+0x304): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(interpolated_gain_curve.o): in function `webrtc::InterpolatedGainCurve::LookUpGainToApply(float) const': interpolated_gain_curve.cc:(.text+0x1f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(quantile_noise_estimator.o): in function `webrtc::QuantileNoiseEstimator::Estimate(webrtc::ArrayView<float const, 129l>, webrtc::ArrayView<float, 129l>)': quantile_noise_estimator.cc:(.text+0x1d4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_enum_util.o): in function `google::protobuf::internal::InitializeEnumStrings(google::protobuf::internal::EnumEntry const*, int const*, unsigned long, google::protobuf::internal::ExplicitlyConstructed<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, 1ul>*)': generated_enum_util.cc:(.text+0x124): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: generated_enum_util.cc:(.text+0x138): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(generated_enum_util.o):generated_enum_util.cc:(.text+0x5f0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl.o): in function `google::protobuf::io::IstreamInputStream::CopyingIstreamInputStream::Read(void*, int)': zero_copy_stream_impl.cc:(.text+0x1c): undefined reference to `std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >::read(char*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl.o): in function `google::protobuf::io::OstreamOutputStream::CopyingOstreamOutputStream::Write(void const*, int)': zero_copy_stream_impl.cc:(.text+0x1c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::write(char const*, long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <55>(char const (&) [55])': zero_copy_stream_impl_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi55EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <58>(char const (&) [58])': zero_copy_stream_impl_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi58EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <43>(char const (&) [43])': zero_copy_stream_impl_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi43EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <78>(char const (&) [78])': zero_copy_stream_impl_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi78EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(zero_copy_stream_impl_lite.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <42>(char const (&) [42])': zero_copy_stream_impl_lite.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi42EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(map.o): in function `google::protobuf::internal::UntypedMapBase::UntypedMergeFrom(google::protobuf::internal::UntypedMapBase const&)': map.cc:(.text+0x1bc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: map.cc:(.text+0x518): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(map.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned long, long>(unsigned long, long, char const*)': map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0x64): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0x74): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long)' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0x80): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0x88): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xa0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xa4): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xd4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xe0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImlEEPKcT_T0_S3_]+0xe8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(map.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned long, unsigned char>(unsigned long, unsigned char, char const*)': map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0x64): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0x80): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0x88): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xa0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xa4): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xd4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xe0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: map.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringImhEEPKcT_T0_S3_]+0xe8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(micro_string.o): in function `google::protobuf::internal::MicroString::SetFromOtherSlow(google::protobuf::internal::MicroString const&, google::protobuf::Arena*, unsigned long)': micro_string.cc:(.text+0xc0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(micro_string.o): in function `google::protobuf::internal::MicroString::SetImpl(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, google::protobuf::Arena*, unsigned long)': micro_string.cc:(.text+0x21c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: micro_string.cc:(.text+0x25c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(micro_string.o): in function `google::protobuf::internal::MicroString::ClearToDefault(google::protobuf::internal::MicroString::UnownedPayload const&, google::protobuf::Arena*)': micro_string.cc:(.text+0xdc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(micro_string.o): in function `google::protobuf::internal::MicroString::ClearToDefault(google::protobuf::internal::MicroString const&, google::protobuf::Arena*)': micro_string.cc:(.text+0x104): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::status_internal::StatusRep::SetPayload(std::__Cr::basic_string_view<char, std::__Cr::char_traits<char> >, absl::Cord)': status_internal.cc:(.text+0x22c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: status_internal.cc:(.text+0x240): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o):status_internal.cc:(.text+0x274): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::status_internal::StatusRep::ToString(absl::StatusToStringMode) const': status_internal.cc:(.text+0x2fc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::status_internal::StatusRep::CloneAndUnref() const': status_internal.cc:(.text+0x1c0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: status_internal.cc:(.text+0x1d4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::status_internal::Payload& absl::inlined_vector_internal::Storage<absl::status_internal::Payload, 1ul, std::__Cr::allocator<absl::status_internal::Payload> >::EmplaceBackSlow<absl::status_internal::Payload>(absl::status_internal::Payload&&)': status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE15EmplaceBackSlowIJS3_EEERS3_DpOT_]+0x180): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE15EmplaceBackSlowIJS3_EEERS3_DpOT_]+0x194): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::inlined_vector_internal::Storage<absl::status_internal::Payload, 1ul, std::__Cr::allocator<absl::status_internal::Payload> >::Erase(absl::status_internal::Payload const*, absl::status_internal::Payload const*)': status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE5EraseEPKS3_S9_]+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o):status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE15DestroyContentsEv]+0xc8): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(status_internal.o): in function `absl::inlined_vector_internal::Storage<absl::status_internal::Payload, 1ul, std::__Cr::allocator<absl::status_internal::Payload> >::InitFrom(absl::inlined_vector_internal::Storage<absl::status_internal::Payload, 1ul, std::__Cr::allocator<absl::status_internal::Payload> > const&)': status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE8InitFromERKS7_]+0xd0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: status_internal.cc:(.text[_ZN4absl23inlined_vector_internal7StorageINS_15status_internal7PayloadELm1ENSt4__Cr9allocatorIS3_EEE8InitFromERKS7_]+0x160): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_network_adaptor_impl.o): in function `webrtc::AudioNetworkAdaptorImpl::SetUplinkBandwidth(int)': audio_network_adaptor_impl.cc:(.text+0x1a8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_network_adaptor_impl.o): in function `webrtc::AudioNetworkAdaptorImpl::UpdateNetworkMetrics(webrtc::Controller::NetworkMetrics const&)': audio_network_adaptor_impl.cc:(.text+0xd8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_network_adaptor_impl.o): in function `webrtc::AudioNetworkAdaptorImpl::SetUplinkPacketLossFraction(float)': audio_network_adaptor_impl.cc:(.text+0x1a4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_network_adaptor_impl.o): in function `webrtc::AudioNetworkAdaptorImpl::SetRtt(int)': audio_network_adaptor_impl.cc:(.text+0x1a0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(audio_network_adaptor_impl.o):audio_network_adaptor_impl.cc:(.text+0x1a0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(frame_length_controller_v2.o): in function `webrtc::FrameLengthControllerV2::FrameLengthControllerV2(webrtc::ArrayView<int const, -4711l>, int, bool)': frame_length_controller_v2.cc:(.text+0x184): undefined reference to `void std::__Cr::__sort<std::__Cr::__less<int, int>&, int*>(int*, int*, std::__Cr::__less<int, int>&)' /usr/bin/ld.bfd: frame_length_controller_v2.cc:(.text+0x1b0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(frame_length_controller_v2.o): in function `webrtc::FrameLengthControllerV2::UpdateNetworkMetrics(webrtc::Controller::NetworkMetrics const&)': frame_length_controller_v2.cc:(.text+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(frame_length_controller_v2.o): in function `webrtc::FrameLengthControllerV2::MakeDecision(webrtc::AudioEncoderRuntimeConfig*)': frame_length_controller_v2.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(frame_length_controller_v2.o): in function `webrtc::FrameLengthControllerV2::~FrameLengthControllerV2()': frame_length_controller_v2.cc:(.text[_ZN6webrtc23FrameLengthControllerV2D2Ev]+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(frame_length_controller_v2.o): in function `webrtc::FrameLengthControllerV2::~FrameLengthControllerV2()': frame_length_controller_v2.cc:(.text[_ZN6webrtc23FrameLengthControllerV2D0Ev]+0x94): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(str_split.o):str_split.cc:(.text+0xc0): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(int128.o): in function `absl::(anonymous namespace)::Uint128ToFormattedString(absl::uint128, unsigned int)': int128.cc:(.text+0x7c): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0x80): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0xb4): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0xb8): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0xec): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: int128.cc:(.text+0x104): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0x10c): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0x11c): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x120): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0x12c): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: int128.cc:(.text+0x264): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: int128.cc:(.text+0x29c): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x2a0): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x2a8): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x2ac): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x2c4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x398): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: int128.cc:(.text+0x3d0): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x3d4): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x3dc): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x3e0): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x3f8): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x424): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: int128.cc:(.text+0x448): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: int128.cc:(.text+0x454): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: int128.cc:(.text+0x490): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x49c): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: int128.cc:(.text+0x4a4): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(int128.o): in function `absl::operator<<(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, absl::uint128)': int128.cc:(.text+0x15c): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x160): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x168): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x16c): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x188): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x1f0): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x1f4): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x1fc): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x200): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x21c): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x344): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x348): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x350): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x354): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x370): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x394): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, unsigned long, char)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(int128.o): in function `absl::int128::ToString() const': int128.cc:(.text+0x70): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(int128.o): in function `absl::operator<<(std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >&, absl::int128)': int128.cc:(.text+0x80): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: int128.cc:(.text+0x1d4): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x1d8): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x1e0): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x1e4): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x200): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x288): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x28c): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x294): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x298): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x2b4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x338): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x33c): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x344): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x348): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x364): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x3cc): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x3d0): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x3d8): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x3dc): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x3f8): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x41c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, unsigned long, char)' /usr/bin/ld.bfd: int128.cc:(.text+0x464): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: int128.cc:(.text+0x468): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x470): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: int128.cc:(.text+0x474): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: int128.cc:(.text+0x490): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: int128.cc:(.text+0x4b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, unsigned long, char)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(a_sign.o): in function `x509_sign_to_bit_string': a_sign.cc:(.text+0x194): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_both.o): in function `bssl::DTLSMessageBitmap::Init(unsigned long)': d1_both.cc:(.text+0xd0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_both.o): in function `bssl::DTLSMessageBitmap::MarkRange(unsigned long, unsigned long)': d1_both.cc:(.text+0x174): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_both.o): in function `bssl::dtls_clear_outgoing_messages(ssl_st*)': d1_both.cc:(.text+0xe0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_both.o): in function `bssl::dtls_clear_unused_write_epochs(ssl_st*)': d1_both.cc:(.text+0x1b0): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(d1_both.o):d1_both.cc:(.text+0x8c): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_fixed.o): in function `absl::time_internal::cctz::FixedOffsetToAbbr(std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > const&)': time_zone_fixed.cc:(.text+0x54): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: time_zone_fixed.cc:(.text+0x7c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: time_zone_fixed.cc:(.text+0xa4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: time_zone_fixed.cc:(.text+0x11c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: time_zone_fixed.cc:(.text+0x1a0): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__erase_external_with_move(unsigned long, unsigned long)' /usr/bin/ld.bfd: time_zone_fixed.cc:(.text+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `absl::time_internal::cctz::time_zone::Impl::LoadTimeZone(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, absl::time_internal::cctz::time_zone*)': time_zone_impl.cc:(.text+0x84): undefined reference to `std::__Cr::mutex::lock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0xb8): undefined reference to `std::__Cr::mutex::unlock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0xc4): undefined reference to `std::__Cr::mutex::unlock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0xf8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x118): undefined reference to `std::__Cr::mutex::lock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x198): undefined reference to `std::__Cr::mutex::unlock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x204): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `absl::time_internal::cctz::time_zone::Impl::ClearTimeZoneMapTestOnly()': time_zone_impl.cc:(.text+0x34): undefined reference to `std::__Cr::mutex::lock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x130): undefined reference to `std::__Cr::mutex::unlock()' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x174): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `absl::time_internal::cctz::time_zone::Impl::Impl(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': time_zone_impl.cc:(.text+0x3c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `std::__Cr::__hash_iterator<std::__Cr::__hash_node<std::__Cr::__hash_value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, absl::time_internal::cctz::time_zone::Impl const*>, void*>*> std::__Cr::__hash_table<std::__Cr::__hash_value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::__unordered_map_hasher<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::hash<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::equal_to<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::__unordered_map_equal<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::equal_to<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::hash<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*> > >::find<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': time_zone_impl.cc:(.text[_ZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE4findIS7_EENS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEERKT_]+0x50): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `std::__Cr::__hash_table<std::__Cr::__hash_value_type<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::__unordered_map_hasher<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::hash<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::equal_to<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::__unordered_map_equal<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >, std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*>, std::__Cr::equal_to<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > >, std::__Cr::hash<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > > >, std::__Cr::allocator<std::__Cr::pair<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const, absl::time_internal::cctz::time_zone::Impl const*> > >::__emplace_unique<std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>, std::__Cr::tuple<> >(std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)::{lambda(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&)#1}::operator()(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, std::__Cr::piecewise_construct_t const&, std::__Cr::tuple<std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&>&&, std::__Cr::tuple<>&&) const': time_zone_impl.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSI_EEENSX_IJEEEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEEbEEDpOT_ENKUlSY_SW_OSZ_OS10_E_clESY_SW_S1B_S1C_]+0x48): undefined reference to `std::__Cr::__hash_memory(void const*, unsigned long)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSI_EEENSX_IJEEEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEEbEEDpOT_ENKUlSY_SW_OSZ_OS10_E_clESY_SW_S1B_S1C_]+0x158): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSI_EEENSX_IJEEEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEEbEEDpOT_ENKUlSY_SW_OSZ_OS10_E_clESY_SW_S1B_S1C_]+0x1d0): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSI_EEENSX_IJEEEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEEbEEDpOT_ENKUlSY_SW_OSZ_OS10_E_clESY_SW_S1B_S1C_]+0x240): undefined reference to `std::__Cr::__next_prime(unsigned long)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text[_ZZNSt4__Cr12__hash_tableINS_17__hash_value_typeINS_12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEEEPKN4absl13time_internal4cctz9time_zone4ImplEEENS_22__unordered_map_hasherIS7_NS_4pairIKS7_SE_EENS_4hashIS7_EENS_8equal_toIS7_EEEENS_21__unordered_map_equalIS7_SJ_SN_SL_EENS5_ISJ_EEE16__emplace_uniqueIJRKNS_21piecewise_construct_tENS_5tupleIJRSI_EEENSX_IJEEEEEENSH_INS_15__hash_iteratorIPNS_11__hash_nodeISF_PvEEEEbEEDpOT_ENKUlSY_SW_OSZ_OS10_E_clESY_SW_S1B_S1C_]+0x338): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `std::__Cr::deque<absl::time_internal::cctz::time_zone::Impl const*, std::__Cr::allocator<absl::time_internal::cctz::time_zone::Impl const*> >::__add_back_capacity()': time_zone_impl.cc:(.text[_ZNSt4__Cr5dequeIPKN4absl13time_internal4cctz9time_zone4ImplENS_9allocatorIS7_EEE19__add_back_capacityEv]+0x1ac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `void std::__Cr::__split_buffer<absl::time_internal::cctz::time_zone::Impl const**, std::__Cr::allocator<absl::time_internal::cctz::time_zone::Impl const**>, std::__Cr::__split_buffer_pointer_layout>::emplace_back<absl::time_internal::cctz::time_zone::Impl const**&>(absl::time_internal::cctz::time_zone::Impl const**&)': time_zone_impl.cc:(.text[_ZNSt4__Cr14__split_bufferIPPKN4absl13time_internal4cctz9time_zone4ImplENS_9allocatorIS8_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJRS8_EEEvDpOT_]+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_impl.cc:(.text[_ZNSt4__Cr14__split_bufferIPPKN4absl13time_internal4cctz9time_zone4ImplENS_9allocatorIS8_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJRS8_EEEvDpOT_]+0x280): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o): in function `void std::__Cr::__split_buffer<absl::time_internal::cctz::time_zone::Impl const**, std::__Cr::allocator<absl::time_internal::cctz::time_zone::Impl const**>, std::__Cr::__split_buffer_pointer_layout>::emplace_back<absl::time_internal::cctz::time_zone::Impl const**>(absl::time_internal::cctz::time_zone::Impl const**&&)': time_zone_impl.cc:(.text[_ZNSt4__Cr14__split_bufferIPPKN4absl13time_internal4cctz9time_zone4ImplENS_9allocatorIS8_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJS8_EEEvDpOT_]+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_impl.o):time_zone_impl.cc:(.text[_ZNSt4__Cr14__split_bufferIPPKN4absl13time_internal4cctz9time_zone4ImplENS_9allocatorIS8_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJS8_EEEvDpOT_]+0x280): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(demangle.o): in function `absl::debugging_internal::DemangleString(char const*)': demangle.cc:(.text+0x5c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: demangle.cc:(.text+0x84): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: demangle.cc:(.text+0xac): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(block_delay_buffer.o): in function `webrtc::BlockDelayBuffer::BlockDelayBuffer(unsigned long, unsigned long, unsigned long, unsigned long)': block_delay_buffer.cc:(.text+0x288): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: block_delay_buffer.cc:(.text+0x29c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(block_delay_buffer.o): in function `webrtc::BlockDelayBuffer::DelaySignal(webrtc::AudioBuffer*)': block_delay_buffer.cc:(.text+0x148): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(block_framer.o): in function `webrtc::BlockFramer::BlockFramer(unsigned long, unsigned long)': block_framer.cc:(.text+0x26c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(block_framer.o):block_framer.cc:(.text+0x280): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `google::protobuf::internal::ExtensionSet::InternalExtensionMergeFromIntoUninitializedExtension(google::protobuf::internal::ExtensionSet::Extension&, google::protobuf::MessageLite const*, int, google::protobuf::internal::ExtensionSet::Extension const&, google::protobuf::Arena*)': extension_set.cc:(.text+0x168): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::assign(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': extension_set.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignERKS5_]+0x44): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<false>(char const*, unsigned long)' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignERKS5_]+0x50): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >& std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_no_alias<true>(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <37>(char const (&) [37])': extension_set.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi37EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <16>(char const (&) [16])': extension_set.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi16EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `char const* absl::log_internal::MakeCheckOpString<unsigned char, long>(unsigned char, long, char const*)': extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0x74): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(long)' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0x80): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0x88): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xa0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xa4): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xc8): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xd4): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xe0): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: extension_set.cc:(.text[_ZN4absl12log_internal17MakeCheckOpStringIhlEEPKcT_T0_S3_]+0xe8): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::log_internal::LogMessage& absl::log_internal::LogMessage::operator<< <44>(char const (&) [44])': extension_set.cc:(.text[_ZN4absl12log_internal10LogMessagelsILi44EEERS1_RAT__Kc]+0x58): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `google::protobuf::internal::OnShutdownDelete<absl::flat_hash_set<google::protobuf::internal::ExtensionInfo, google::protobuf::internal::(anonymous namespace)::ExtensionHasher, google::protobuf::internal::(anonymous namespace)::ExtensionEq, std::__Cr::allocator<google::protobuf::internal::ExtensionInfo> > >(absl::flat_hash_set<google::protobuf::internal::ExtensionInfo, google::protobuf::internal::(anonymous namespace)::ExtensionHasher, google::protobuf::internal::(anonymous namespace)::ExtensionEq, std::__Cr::allocator<google::protobuf::internal::ExtensionInfo> >*)::{lambda(void const*)#1}::__invoke(void const*)': extension_set.cc:(.text+0x88): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >::clear_and_delete(absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >*, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >*)': extension_set.cc:(.text[_ZN4absl18container_internal10btree_nodeINS0_10map_paramsIiN6google8protobuf8internal12ExtensionSet9ExtensionENSt4__Cr4lessIiEENS8_9allocatorINS8_4pairIKiS7_EEEELi256ELb0EEEE16clear_and_deleteEPSH_PSF_]+0x284): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::container_internal::btree_iterator<absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >, std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension>&, std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension>*> absl::container_internal::btree<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >::internal_emplace<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >(absl::container_internal::btree_iterator<absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >, std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension>&, std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension>*>, std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension>&&)': extension_set.cc:(.text[_ZN4absl18container_internal5btreeINS0_10map_paramsIiN6google8protobuf8internal12ExtensionSet9ExtensionENSt4__Cr4lessIiEENS8_9allocatorINS8_4pairIKiS7_EEEELi256ELb0EEEE16internal_emplaceIJSE_EEENS0_14btree_iteratorINS0_10btree_nodeISG_EERSE_PSE_EESO_DpOT_]+0x1c4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o): in function `absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >::split(int, absl::container_internal::btree_node<absl::container_internal::map_params<int, google::protobuf::internal::ExtensionSet::Extension, std::__Cr::less<int>, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >, 256, false> >*, std::__Cr::allocator<std::__Cr::pair<int const, google::protobuf::internal::ExtensionSet::Extension> >*)': extension_set.cc:(.text[_ZN4absl18container_internal10btree_nodeINS0_10map_paramsIiN6google8protobuf8internal12ExtensionSet9ExtensionENSt4__Cr4lessIiEENS8_9allocatorINS8_4pairIKiS7_EEEELi256ELb0EEEE5splitEiPSH_PSF_]+0x1a8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(extension_set.o):extension_set.cc:(.text[_ZN4absl18container_internal10btree_nodeINS0_10map_paramsIiN6google8protobuf8internal12ExtensionSet9ExtensionENSt4__Cr4lessIiEENS8_9allocatorINS8_4pairIKiS7_EEEELi256ELb0EEEE5splitEiPSH_PSF_]+0x1bc): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::SteadyClockNow()': kernel_timeout.cc:(.text+0x4): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::KernelTimeout(absl::Duration)': kernel_timeout.cc:(.text+0x78): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::MakeAbsNanos() const': kernel_timeout.cc:(.text+0x38): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::InNanosecondsFromNow() const': kernel_timeout.cc:(.text+0x34): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::MakeAbsTimespec() const': kernel_timeout.cc:(.text+0x3c): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o):kernel_timeout.cc:(.text+0x38): more undefined references to `std::__Cr::chrono::steady_clock::now()' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::ToChronoTimePoint() const': kernel_timeout.cc:(.text+0x80): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(kernel_timeout.o): in function `absl::synchronization_internal::KernelTimeout::ToChronoDuration() const': kernel_timeout.cc:(.text+0x34): undefined reference to `std::__Cr::chrono::steady_clock::now()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::GetTransitionType(long, bool, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&, unsigned char*)': time_zone_info.cc:(.text+0x1e8): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x2b4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x2c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x2dc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::__wrap_iter<absl::time_internal::cctz::TransitionType*> std::__Cr::vector<absl::time_internal::cctz::TransitionType, std::__Cr::allocator<absl::time_internal::cctz::TransitionType> >::emplace<>(std::__Cr::__wrap_iter<absl::time_internal::cctz::TransitionType const*>)': time_zone_info.cc:(.text[_ZNSt4__Cr6vectorIN4absl13time_internal4cctz14TransitionTypeENS_9allocatorIS4_EEE7emplaceIJEEENS_11__wrap_iterIPS4_EENS9_IPKS4_EEDpOT_]+0x220): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::EquivTransitions(unsigned char, unsigned char) const': time_zone_info.cc:(.text+0xb4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o):time_zone_info.cc:(.text+0x854): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::Load(absl::time_internal::cctz::ZoneInfoSource*)': time_zone_info.cc:(.text+0x688): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::reserve(unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x73c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::push_back(char)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x9f8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xa14): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::vector<char, std::__Cr::allocator<char> >::vector(unsigned long)': time_zone_info.cc:(.text[_ZNSt4__Cr6vectorIcNS_9allocatorIcEEEC2Em]+0xbc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::vector<absl::time_internal::cctz::Transition, std::__Cr::allocator<absl::time_internal::cctz::Transition> >::resize(unsigned long)': time_zone_info.cc:(.text[_ZNSt4__Cr6vectorIN4absl13time_internal4cctz10TransitionENS_9allocatorIS4_EEE6resizeEm]+0x178): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr6vectorIN4absl13time_internal4cctz10TransitionENS_9allocatorIS4_EEE6resizeEm]+0x23c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::assign(char const*, unsigned long)': time_zone_info.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcm]+0xc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6assignEPKcm]+0x2c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::vector<char, std::__Cr::allocator<char> >::~vector()': time_zone_info.cc:(.text[_ZNSt4__Cr6vectorIcNS_9allocatorIcEEED2Ev]+0x4c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::LocalTime(long, absl::time_internal::cctz::Transition const&) const': time_zone_info.cc:(.text+0x108): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::BreakTime(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > > const&) const': time_zone_info.cc:(.text+0x24): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x23c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::MakeTime(absl::time_internal::cctz::detail::civil_time<absl::time_internal::cctz::detail::second_tag> const&) const': time_zone_info.cc:(.text+0x4b0): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x818): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x944): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::(anonymous namespace)::MakeSkipped(absl::time_internal::cctz::Transition const&, absl::time_internal::cctz::detail::civil_time<absl::time_internal::cctz::detail::second_tag> const&)': time_zone_info.cc:(.text+0x98): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xdc): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x14c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::(anonymous namespace)::MakeRepeated(absl::time_internal::cctz::Transition const&, absl::time_internal::cctz::detail::civil_time<absl::time_internal::cctz::detail::second_tag> const&)': time_zone_info.cc:(.text+0xac): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xe0): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o):time_zone_info.cc:(.text+0x14c): more undefined references to `std::__Cr::chrono::system_clock::from_time_t(long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::Version() const': time_zone_info.cc:(.text+0x28): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::Description() const': time_zone_info.cc:(.text+0x28): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x2c): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x68): undefined reference to `vtable for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x6c): undefined reference to `VTT for std::__Cr::basic_ostringstream<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xa0): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xbc): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xc0): undefined reference to `vtable for std::__Cr::basic_streambuf<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xd0): undefined reference to `std::__Cr::locale::locale()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xd8): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0xe0): undefined reference to `vtable for std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x130): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x158): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::operator<<(unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1a8): undefined reference to `std::__Cr::basic_stringbuf<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::str() const' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1dc): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1e8): undefined reference to `std::__Cr::basic_ostream<char, std::__Cr::char_traits<char> >::~basic_ostream()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1f0): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::NextTransition(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > > const&, absl::time_internal::cctz::time_zone::civil_transition*) const': time_zone_info.cc:(.text+0x4c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1d4): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::PrevTransition(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > > const&, absl::time_internal::cctz::time_zone::civil_transition*) const': time_zone_info.cc:(.text+0x4c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x78): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x218): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::TimeZoneInfo::~TimeZoneInfo()': time_zone_info.cc:(.text[_ZN4absl13time_internal4cctz12TimeZoneInfoD2Ev]+0x17c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `void std::__Cr::__split_buffer<absl::time_internal::cctz::TransitionType, std::__Cr::allocator<absl::time_internal::cctz::TransitionType>&, std::__Cr::__split_buffer_pointer_layout>::emplace_back<>()': time_zone_info.cc:(.text[_ZNSt4__Cr14__split_bufferIN4absl13time_internal4cctz14TransitionTypeERNS_9allocatorIS4_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJEEEvDpOT_]+0x1e8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr14__split_bufferIN4absl13time_internal4cctz14TransitionTypeERNS_9allocatorIS4_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJEEEvDpOT_]+0x20c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::vector<absl::time_internal::cctz::Transition, std::__Cr::allocator<absl::time_internal::cctz::Transition> >::emplace_back<absl::time_internal::cctz::Transition const&>(absl::time_internal::cctz::Transition const&)::{lambda()#2}::operator()() const': time_zone_info.cc:(.text[_ZZNSt4__Cr6vectorIN4absl13time_internal4cctz10TransitionENS_9allocatorIS4_EEE12emplace_backIJRKS4_EEERS4_DpOT_ENKUlvE0_clEv]+0x11c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o):time_zone_info.cc:(.text[_ZNSt4__Cr14__split_bufferIN4absl13time_internal4cctz10TransitionERNS_9allocatorIS4_EENS_29__split_buffer_pointer_layoutEE12emplace_backIJEEEvDpOT_]+0x1e4): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::unique_ptr<absl::time_internal::cctz::ZoneInfoSource, std::__Cr::default_delete<absl::time_internal::cctz::ZoneInfoSource> > std::__Cr::__function::__policy_func<std::__Cr::unique_ptr<absl::time_internal::cctz::ZoneInfoSource, std::__Cr::default_delete<absl::time_internal::cctz::ZoneInfoSource> > (std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)>::__call_func<absl::time_internal::cctz::TimeZoneInfo::Load(std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)::$_0>(std::__Cr::__function::__policy_storage const*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> > const&)': time_zone_info.cc:(.text+0xfc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x1b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x634): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x658): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x68c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x758): undefined reference to `vtable for std::__Cr::basic_ifstream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x75c): undefined reference to `VTT for std::__Cr::basic_ifstream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x764): undefined reference to `vtable for std::__Cr::basic_ifstream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x768): undefined reference to `VTT for std::__Cr::basic_ifstream<char, std::__Cr::char_traits<char> >' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x79c): undefined reference to `std::__Cr::ios_base::init(void*)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x7c0): undefined reference to `std::__Cr::basic_filebuf<char, std::__Cr::char_traits<char> >::basic_filebuf()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x7dc): undefined reference to `std::__Cr::basic_filebuf<char, std::__Cr::char_traits<char> >::open(char const*, unsigned int)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x808): undefined reference to `std::__Cr::ios_base::getloc() const' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x80c): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x814): undefined reference to `std::__Cr::ctype<char>::id' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x818): undefined reference to `std::__Cr::locale::use_facet(std::__Cr::locale::id&) const' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x834): undefined reference to `std::__Cr::locale::~locale()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x864): undefined reference to `std::__Cr::basic_filebuf<char, std::__Cr::char_traits<char> >::~basic_filebuf()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x870): undefined reference to `std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >::~basic_istream()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x878): undefined reference to `std::__Cr::basic_ios<char, std::__Cr::char_traits<char> >::~basic_ios()' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x954): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: time_zone_info.cc:(.text+0x984): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::(anonymous namespace)::AndroidZoneInfoSource::Version() const': time_zone_info.cc:(.text+0x28): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >& std::__Cr::getline<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >(std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >&, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >&, char)': time_zone_info.cc:(.text[_ZNSt4__Cr7getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_]+0x44): undefined reference to `std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >::sentry::sentry(std::__Cr::basic_istream<char, std::__Cr::char_traits<char> >&, bool)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr7getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_]+0x204): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr7getlineIcNS_11char_traitsIcEENS_9allocatorIcEEEERNS_13basic_istreamIT_T0_EES9_RNS_12basic_stringIS6_S7_T1_EES6_]+0x23c): undefined reference to `std::__Cr::ios_base::clear(unsigned int)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPKcTnNS_9enable_ifIXsr31__has_forward_iterator_categoryIT_EE5valueEiE4typeELi0EEERS5_SA_SA_': time_zone_info.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPKcTnNS_9enable_ifIXsr31__has_forward_iterator_categoryIT_EE5valueEiE4typeELi0EEERS5_SA_SA_]+0x1b4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPKcTnNS_9enable_ifIXsr31__has_forward_iterator_categoryIT_EE5valueEiE4typeELi0EEERS5_SA_SA_]+0x204): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_info.cc:(.text[_ZNSt4__Cr12basic_stringIcNS_11char_traitsIcEENS_9allocatorIcEEE6appendIPKcTnNS_9enable_ifIXsr31__has_forward_iterator_categoryIT_EE5valueEiE4typeELi0EEERS5_SA_SA_]+0x218): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_info.o): in function `absl::time_internal::cctz::(anonymous namespace)::FuchsiaZoneInfoSource::Version() const': time_zone_info.cc:(.text+0x28): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__init_copy_ctor_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_libc.o): in function `absl::time_internal::cctz::TimeZoneLibC::BreakTime(std::__Cr::chrono::time_point<std::__Cr::chrono::system_clock, std::__Cr::chrono::duration<long, std::__Cr::ratio<1l, 1l> > > const&) const': time_zone_libc.cc:(.text+0x54): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_libc.o): in function `absl::time_internal::cctz::TimeZoneLibC::MakeTime(absl::time_internal::cctz::detail::civil_time<absl::time_internal::cctz::detail::second_tag> const&) const': time_zone_libc.cc:(.text+0x1d0): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_libc.cc:(.text+0x290): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_libc.cc:(.text+0x42c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: time_zone_libc.cc:(.text+0x45c): undefined reference to `std::__Cr::chrono::system_clock::from_time_t(long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_libc.o):time_zone_libc.cc:(.text+0x478): more undefined references to `std::__Cr::chrono::system_clock::from_time_t(long)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(time_zone_posix.o): in function `absl::time_internal::cctz::(anonymous namespace)::ParseAbbr(char const*, std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >*)': time_zone_posix.cc:(.text+0x60): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: time_zone_posix.cc:(.text+0xcc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::__assign_external(char const*, unsigned long)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(adaptive_fir_filter.o): in function `webrtc::aec3::ComputeFrequencyResponse(unsigned long, std::__Cr::vector<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> >, std::__Cr::allocator<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> > > > const&, std::__Cr::vector<std::__Cr::array<float, 65ul>, std::__Cr::allocator<std::__Cr::array<float, 65ul> > >*)': adaptive_fir_filter.cc:(.text+0x188): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: adaptive_fir_filter.cc:(.text+0x19c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(adaptive_fir_filter.o): in function `webrtc::aec3::ComputeFrequencyResponse_Neon(unsigned long, std::__Cr::vector<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> >, std::__Cr::allocator<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> > > > const&, std::__Cr::vector<std::__Cr::array<float, 65ul>, std::__Cr::allocator<std::__Cr::array<float, 65ul> > >*)': adaptive_fir_filter.cc:(.text+0x1b8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: adaptive_fir_filter.cc:(.text+0x1cc): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(adaptive_fir_filter.o): in function `webrtc::aec3::AdaptPartitions(webrtc::RenderBuffer const&, webrtc::FftData const&, unsigned long, std::__Cr::vector<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> >, std::__Cr::allocator<std::__Cr::vector<webrtc::FftData, std::__Cr::allocator<webrtc::FftData> > > >*)': adaptive_fir_filter.cc:(.text+0x260): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(adaptive_fir_filter.o):adaptive_fir_filter.cc:(.text+0x274): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(matched_filter.o): in function `webrtc::MatchedFilter::Dump()': matched_filter.cc:(.text+0x80): undefined reference to `std::__Cr::to_string(unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x94): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0xbc): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x128): undefined reference to `std::__Cr::to_string(unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x13c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x184): undefined reference to `std::__Cr::to_string(unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x19c): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x1c4): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::append(char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x25c): undefined reference to `std::__Cr::to_string(unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x274): undefined reference to `std::__Cr::basic_string<char, std::__Cr::char_traits<char>, std::__Cr::allocator<char> >::insert(unsigned long, char const*, unsigned long)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x33c): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: matched_filter.cc:(.text+0x350): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(matched_filter.o): in function `std::__Cr::vector<std::__Cr::vector<float, std::__Cr::allocator<float> >, std::__Cr::allocator<std::__Cr::vector<float, std::__Cr::allocator<float> > > >::__vdeallocate()': matched_filter.cc:(.text[_ZNSt4__Cr6vectorINS0_IfNS_9allocatorIfEEEENS1_IS3_EEE13__vdeallocateEv]+0xe8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(matched_filter_lag_aggregator.o): in function `webrtc::MatchedFilterLagAggregator::MatchedFilterLagAggregator(webrtc::ApmDataDumper*, unsigned long, webrtc::EchoCanceller3Config::Delay const&)': matched_filter_lag_aggregator.cc:(.text+0x2c8): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: matched_filter_lag_aggregator.cc:(.text+0x310): undefined reference to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' /usr/bin/ld.bfd: packages/lib/release/libwebrtc.a(matched_filter_lag_aggregator.o):matched_filter_lag_aggregator.cc:(.text+0x124): more undefined references to `std::__Cr::__libcpp_verbose_abort(char const*, ...)' follow So for now we're using a version before m140 that's closest to m144, which is m139.
2026-07-07Keep capture device running for the whole voice sessionRoxie Linden
Mute now zeroes captured gain and disables the sender tracks instead of stopping the capture device, so unmuting no longer cold-starts the AEC (no hiss) and Bluetooth devices no longer drop/restart as they switch between mono and stereo. Capture is gated on voice being enabled rather than on mute: it starts when voice is enabled and runs across calls and mute/unmute, and is released when voice is disabled (setVoiceEnabled). Playout stays gated on there being a connection to render. As a result the OS "mic in use" indicator is on for the length of the session and only clears when voice is disabled. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-07-07Update libwebrtc to m144 and fix audio device lifecycle/processingRoxie Linden
- Update libwebrtc to version m144 (autobuild.xml). - Use WebRTC's software APM exclusively; disable built-in (hardware/OS) AEC/AGC/NS, including after each device (re)deploy. - Only run the output device once a peer connection's audio is established (and bring devices up with the user's selected device at that point), fixing the buzz heard before/without an active connection. - Keep capture warm across mute/unmute to avoid the AEC cold-start hiss; stop recording 30s after a sustained mute so the OS mic indicator clears. - Reliably (re)select and (re)start capture/playout after teleport or voice restart so audio sends/records again. - Don't suspend the voice channel when entering tuning mode (Vivox-era behavior that dropped the peer connection). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-13Merge tag 'Second_Life_Release#663bf4d3-26.3' into 26.3Erik Kundiman
2026-05-22#4823 WebRTC crashesAndrey Kleshchev
2026-05-02Merge tag 'Second_Life_Release#7719e6c1-26.2' into 2026.02Erik Kundiman
2026-04-27Fix P2P text chat timeout on WebRTC regions and delay voice renegotiation on ↵Roxanne Skelly
disconnect (#5706) * Fix P2P text chat timeout on WebRTC regions and delay voice renegotiation on disconnect Text chat: On WebRTC regions, getOutgoingCallInterface() returns nullptr, causing mP2PAsAdhocCall to be true for all P2P sessions including text-only IMs. This routed text chat through startP2PVoiceCoro which sent a "start p2p voice" request and waited for a server reply that never came, resulting in a 30-second session initialization timeout. Fix by gating the p2p-as-adhoc server init on mStartedAsIMCall so text-only sessions initialize immediately. WebRTC: Split kFailed and kDisconnected handling in OnConnectionChange. kFailed still renegotiates immediately. kDisconnected now waits 10 seconds before renegotiating, giving the connection time to recover on its own. Uses a sequence counter to ensure only the most recent disconnect transition can trigger renegotiation, preventing stale delayed tasks from firing early after disconnect/reconnect cycles. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * Revert im-change for not using the voice subsystem when doing a text-only IM --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-07Merge tag 'Second_Life_Release#3529bc5f-2026.02' into 2026.02Erik Kundiman
2026-02-10Merge pull request #5401 from secondlife/project/voice_moderationJonathan "Geenz" Goodman
Voice moderation -> 26.2
2026-02-04Merge branch 'release/2026.01' into project/voice_moderationMnikolenko Productengine
2026-01-29Merge tag 'Second_Life_Release#e42ec63b-2026.01' into 2026.01Erik Kundiman
2026-01-26#5314 fix WebRTC voice being muted after quickly toggling the Speak buttonMaxim Nikolenko
2026-01-23Fix failure to reconnect after disconnect and occasional dropout issue (#5322)Roxanne Skelly
* Fix failure to reconnect after disconnect and occasional dropout issue We were occasionally seeing dropouts which may have been caused by ICE renegotiate requests. The code is there to reconnect in that case, but there were a few bugs, some of which were likely due to the webrtc upgrade. Also, we were seeing failures to reconnect after voice server restart. There were some issues with the PTT button that came up after the above issue was fixed. * Added a clarification as part of CR * We need to set mute state for p2p/adhoc/group calls as well
2025-12-10Fix failure to reconnect after disconnect and occasional dropout issue (#5126)Roxanne Skelly
* Fix failure to reconnect after disconnect and occasional dropout issue We were occasionally seeing dropouts which may have been caused by ICE renegotiate requests. The code is there to reconnect in that case, but there were a few bugs, some of which were likely due to the webrtc upgrade. Also, we were seeing failures to reconnect after voice server restart. There were some issues with the PTT button that came up after the above issue was fixed. * We need to set mute state for p2p/adhoc/group calls as well
2025-12-08Merge branch 'release/2026.01' into maxim/voice-moderationMnikolenko Productengine
# Conflicts: # indra/newview/llviewerstats.h
2025-12-04Merge remote-tracking branch 'secondlife/release/2026.01' into 2026.01Erik Kundiman
2025-12-03Merge pull request #5094 from secondlife/mainJonathan "Geenz" Goodman
2025.08 -> Develop
2025-12-01Merge branch 'develop' into maxim/voice-moderationMnikolenko Productengine
2025-11-26#5018 add webrtc connection statisticsMnikolenko Productengine
2025-11-17#4948 Crash at webrtc's initializeConnectionAndrey Kleshchev
2025-10-30Merge tag 'Second_Life_Release#5a0ba25d-2025.08' into 2025.08Erik Kundiman
2025-10-28Fix issue where mac was crashing during an attempt to unplug or replug ↵Roxanne Skelly
microphone. (#4897) The mac audio device manager was being "helpful" by restarting playout and recording if the Default device was changed, assuming the application wouldn't care. However, we received an update of device change, and attempted to stop and start playout anyway, causing a conflict. The fix was simply to not deploy new devices when the device id didn't change.
2025-10-26Revert "Improve switching of webrtc devices"Andrey Kleshchev
Wrong approach. Might need to split workerDeployDevices into separate recording and rendering variants. This partiall reverts commit bb26aa3c2cb8ff961668cf0ad8180d3e9c57f941, I left log lines.
2025-10-25Merge tag 'Second_Life_Release#01823996-2025.08' into 2025.08Erik Kundiman
2025-10-22#4652 Improve switching of webrtc devicesAndrey Kleshchev
2025-10-22Merge tag 'Second_Life_Release#57a9e513-2025.07' into 2025.07Erik Kundiman
2025-10-17Merge remote-tracking branch 'origin/main' into geenz/main-to-developJonathan "Geenz" Goodman
2025-10-13#4819 WebRTC crashes after a failed loginAndrey Kleshchev
2025-10-09#4777 Fix crash on missing factoryAndrey Kleshchev
2025-10-08#4796 Preferences' mic volume slider had no effect.Andrey Kleshchev
2025-10-07A fix for the linking errors to CM's WebRTC 137Erik Kundiman
Somehow there would be undefined references to webrtc::RtpStreamConfig::Rtx::Rtx() and webrtc::LossBasedBweV2::Config::Config() Rtx definition is not found in "call/rtp_config.h", there's only the declarations there. And Config definition either in "modules/congestion_controller/goog_cc/loss_based_bwe_v2.h" So, for now, we define those somewhere in llwebrtc code, may not be ideal at all since they're empty, for now, but at least it builds now and WebRTC seems to be working (I tested in a WebRTC Voice region, but this needs to be really tested with microphones and at least 2 people).
2025-10-03#4777 Fix webrtc crashing in worker threads on shutdownAndrey Kleshchev
2025-10-03Omit some WebRTC function override on Crow MisiaErik Kundiman
which are SetObserver, GetPlayoutDevice and GetRecordingDevice.
2025-09-20#4695 Fix missing voice cleanupAndrey Kleshchev
Cleanup is in LLVoiceClient::terminate() gWebRTCImpl was never deleted Added mDeviceModule security
2025-09-16Fix indexing problem with mac devices (#4676)Roxanne Skelly
* Fix indexing problem with mac devices This resulted in the wrong device being selected. Also, fix a shutdown crash where recording was not being stopped, hence the recording thread was still running on shutdown and crashed because it lost access to resources. Fix an issue with p2p calls where they're coming up muted even though the button indicates they are unmuted. * Always refresh device list on notification of device changes Even when the selected device doesn't change, we need to re-deploy it as it might have had characteristics (sampling rate, etc.) changed. Also, we need to redeploy when the Default device has changed