I mainly made the following two key changes, and then this problem was solved。
extern "C" void __ZNSt3__122__libcpp_verbose_abortEPKcz(const char* msg, ...) {
va_list args;
va_start(args, msg);
vfprintf(stderr, msg, args);
va_end(args);
abort();
}
ios_framework(
name = "TelegramUIFramework",
linkopts = [
"-undefined",
"dynamic_lookup",
"-U",
"__ZNSt3__122__libcpp_verbose_abortEPKcz",
],
)
Topic:
App & System Services
SubTopic:
Core OS
Tags: