是否有标准方法告诉brew(Mac OS 的自制程序包管理器)构建组合的32/64 位二进制文件?
是否有标准方法告诉brew 使用“胖”32/64 组合库来编译库?我想为组合 32/64 位构建 libxml2?
/usr/local/lib/libxml2.dylib: Mach-O 64-bit dynamically linked shared library x86_64
如果我“手动”构建库,我就可以做到这一点,但我想知道是否有一些关于brew 和brew 公式的约定来告诉brew 这样做。
Is there a standard way to tell brew to compile libraries with "fat" 32/64 combination libraries? I'd like to build libxml2 for combo 32/64 bit?
/usr/local/lib/libxml2.dylib: Mach-O 64-bit dynamically linked shared library x86_64
I can do it if I build the library "by hand", but I'm wondering if there's some convention for brew and brew formula to tell brew to do this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有标准方法。有些公式有一个
--universal
选项来执行此操作(但不是全部)。There's no standard way. Some formulae have a
--universal
option for doing this (but not all of them).