菜鸟教程小白 发表于 2022-12-13 04:16:47

ios - 如何使用 theos 链接 IOKit?


                                            <p><p>我正在开发一个使用 IOKit 获取电池信息的调整,但构建失败。</p>

<pre><code>Undefined symbols for architecture armv7:
&#34;_IOPSCopyPowerSourcesInfo&#34;, referenced from:
      getBatteryPercent(int*) in PRJNAME.mm.3bb88719.o
&#34;_IOPSCopyPowerSourcesList&#34;, referenced from:
      getBatteryPercent(int*) in PRJNAME.mm.3bb88719.o
&#34;_IOPSGetPowerSourceDescription&#34;, referenced from:
      getBatteryPercent(int*) in PRJNAME.mm.3bb88719.o
</code></pre>

<p>我已经将 <code>libIOKit.dylib</code> 复制到 <code>$THEOS/lib/</code> 并使用了 makefile,但似乎 dylib 没有链接。 </p>

<p>我该如何解决这个问题? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>问题是由子项目的makefile引起的。</p>

<p>所以我的两个 makefile 都包含</p>

<p><code>XXX_LDFLAGS = -lIOKit -L<Library 目录,如果 dylib 不在 $THEOS/lib 中则需要></code></p>

<p>谢谢。</p></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何使用 theos 链接 IOKit?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/27673035/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/27673035/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何使用 theos 链接 IOKit?