菜鸟教程小白 发表于 2022-12-13 10:48:56

ios - 避免在静态库中引用符号


                                            <p><p>我开发了一个分发给其他开发人员的静态库。如果它在最终二进制文件中可用,我想使用 CocoaLumberjack (DDLog) 类。在静态库中,我定义了类接口(interface)并检查 <code></code> 以查看它是否存在。但是在宿主 App 中,如果 CocoaLumberjack 不存在,链接器会报错,因为 DDLog 不存在。</p>

<p>我知道我可以在 App 配置中将符号检查推迟到运行时,但是有没有办法阻止静态库编译引用已编译对象中的 DDLog 类?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>我认为在最终应用链接时不可能有 undefined symbol ,即使它们很弱。来自 Mac OS X ld 的文档:</p>

<blockquote>
<p>When creating a output file with the static link editor when -twolevel_namespace is in effect (now the default) all undefined references must be satisfied at static link time. The flags to allow undefined references, -Usymbol_name, -undefined warning and -undefined sup_press can&#39;t be used. When the environment variable MACOSX_DEPLOYMENT_TARGET is set to 10.3 then -undefined dynamic_lookup can also be used. </p>
</blockquote>

<p>因此,如果在链接时有任何 undefined reference (包括您使用的任何不在当前 Base SDK 版本中的 API),它将产生错误。解决此问题的唯一方法是使用 <code>-undefined dynamic_lookup</code> 链接器选项。不幸的是,这会将所有符号查找推迟到运行时,您不能只指定在使用两级命名空间时要跳过的符号。</p>

<p>对我来说,我不想给最终开发人员带来负担。所以我改用 <code>objc_msgSend</code> 和 <code>NSClassFromString</code> 代替,避免使用该符号。很遗憾必须以这种方式完成,而这似乎是 Apple 可以改进的地方。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 避免在静态库中引用符号,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/32544771/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/32544771/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 避免在静态库中引用符号