Android NDK编译gmp库
如何为 android ndk 编译 GMP 作为静态或共享库,我可以在我的项目中重用/
How to compile GMP for android ndk as a static or shared library that I can reuse in my projects/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道 GMP 是否使用 autoconf,但如果使用,那么您可以尝试以下操作:
您将需要遵循说明
android-ndk-r6/docs/STANDALONE-TOOLCHAIN.html
3/ 调用编译器(简单的方法)
假设您已定义 $NDKROOT 来指向 NDK 的根目录,
我可以使用此配方编译各种开源库。祝你好运!
I don't know if GMP use autoconf but if it does then you can try the following:
you will need to follow instruction
android-ndk-r6/docs/STANDALONE-TOOLCHAIN.html
3/ Invoking the compiler (the easy way)
Assuming that you have defined $NDKROOT to point to root of NDK
I was able to compile various open source libs with this recipe. Good luck!