Aquatic Prime 在 10.6 64 位上无法编译
我需要 Aquatic Prime 方面的帮助才能使其在 10.6.2 和 64 位上运行。
ld: warning: in /AquaticPrime.framework/AquaticPrime, missing required architecture x86_64 in file
"_OBJC_CLASS_$_AquaticPrime", referenced from:
I need help with Aquatic Prime to get it run on 10.6.2 and 64bit.
ld: warning: in /AquaticPrime.framework/AquaticPrime, missing required architecture x86_64 in file
"_OBJC_CLASS_$_AquaticPrime", referenced from:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您实际上并不需要框架在您的应用程序中进行 AquaticPrime 许可证验证。只需将
AquaticPrime.c
和AquaticPrime.h
文件(CoreFoundation 版本)包含在源代码树中即可。此外,使用纯 C 版本被认为是比 Objective-C 版本更“安全”的使用 AquaticPrime 的方式(需要引用 ^_^)。也就是说,我的 AquaticPrime 分支进行了一些小修改,以减少编译 64 位时的警告。
谢谢
You don't really need the framework to have AquaticPrime license verification in your app. Just include
AquaticPrime.c
andAquaticPrime.h
files (the CoreFoundation version) in your source tree and you're good to go. Furthermore using the plain C version is regarded as a more "secure" way of using AquaticPrime rather than the Objective-C version (citation needed ^_^).That said, my fork of AquaticPrime has some small modifications to reduce the warnings while compiling for 64-bit.
Thanks