菜鸟教程小白 发表于 2022-12-13 05:24:46

ios - 如何编译与 UIKit For Mac/Catalyst 一起使用的第 3 方库?


                                            <p><p>如果您尝试在 iOS 13 项目中使用 3rd 方库(使用 make 或 cmake 编译)并打开“UIKit For Mac”选项,Xcode 将对该库不满意。它会提示提供的库是为错误的架构编译的(如果你将它指向 iphoneos 版本)。或者,它会提示它是为错误的平台编译的(如果你将它指向模拟器或 Mac 版本)。我需要在 Makefile 中指定哪些设置才能使 Xcode 接受“UIKit For Mac”选项下的库?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>好吧,经过一段时间的挖掘,我发现如果您为 clang 提供以下目标(在调用 <code>configure</code> 之前设置 <code>CFLAGS</code> 变量),它会编译库的正确版本(注意 <code>-macabi</code> 后缀):</p>

<pre><code>-target x86_64-apple-ios${MIN_IOS_VERSION}-macabi
</code></pre>

<p>我还在macOS版本中添加了最低操作系统版本标志:</p>

<pre><code>-mmacosx-version-min=${MIN_OSX_VERSION}
</code></pre>

<p>这里 <code>MIN_IOS_VERSION="13.0"</code> 和 <code>MIN_OSX_VERSION="10.15"</code></p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何编译与 UIKit For Mac/Catalyst 一起使用的第 3 方库?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/56487645/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/56487645/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何编译与 UIKit For Mac/Catalyst 一起使用的第 3 方库?