[iOS] Scheme 设置为 Release 时 编译失败 Undefined symbol: _RCTSetLogFunction
问题描述
React Native 0.60 升级到 0.61,Scheme 为 Debug 时,编译没有出错,当准备发布,改成 Release 时就会报错。
Undefined symbols for architecture i386:
"_RCTSetLogFunction", referenced from:
-[O2OTests testRendersWelcomeScreen] in O2OTests.o
ld: symbol(s) not found for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Undefined symbol: _RCTSetLogFunction
解决方法
找到有2种方法可以解决。
1. 设置 Dead Code Stripping 为 NO
在 Xcode 中,依次选择 PROJECT -> Build Settings -> LInking -> Dead Code Stringpping,设置为 NO,然后重新编译。
2. 修改 Tests.m 代码
参考 https://github.com/facebook/react-native/pull/25751/files,修改 Tests 项目的 Tests.m 文件代码。
非特殊说明,本网站所有文章均为原创。如若转载,请注明出处:https://mip.cpming.top/p/undefined-symbol-rctsetlogfunction-release