Build.xml: on macOS, add /usr/local/lib to rpath when building lime.ndll

This seems to be required with Xcode 15, but was not required previously
This commit is contained in:
Josh Tynjala
2024-05-09 15:07:09 -07:00
parent bb3b31b08d
commit c70ec9fbe0

View File

@@ -442,6 +442,11 @@
</section> </section>
<section if="mac"> <section if="mac">
<!--
starting in xcode 15, rpath doesn't automatically include
/usr/local/lib, but we need it for neko
-->
<vflag name="-rpath" value="/usr/local/lib" />
<vflag name="-l" value="iconv" /> <vflag name="-l" value="iconv" />
<vflag name="-framework" value="IOKit" /> <vflag name="-framework" value="IOKit" />