Android NDK编译gmp库

发布于 2024-10-04 04:30:06 字数 51 浏览 2 评论 0原文

如何为 android ndk 编译 GMP 作为静态或共享库,我可以在我的项目中重用/

How to compile GMP for android ndk as a static or shared library that I can reuse in my projects/

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

旧时模样 2024-10-11 04:30:06

我不知道 GMP 是否使用 autoconf,但如果使用,那么您可以尝试以下操作:

您将需要遵循说明
android-ndk-r6/docs/STANDALONE-TOOLCHAIN.html
3/ 调用编译器(简单的方法)

假设您已定义 $NDKROOT 来指向 NDK 的根目录,

$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$NDKROOT/android_armeabi   

export CC="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-gcc --sysroot=$NDKROOT/android_armeabi/sysroot"
export CXX="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-g++ --sysroot=$NDKROOT/android_armeabi/sysroot"
export AR="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-ar"
export SYSROOT="$NDKROOT/android_armeabi/sysroot"
export PATH="$NDKROOT/android_armeabi/bin":$PATH

./configure --host=arm-linux-androideabi

我可以使用此配方编译各种开源库。祝你好运!

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

$NDKROOT/build/tools/make-standalone-toolchain.sh --platform=android-9 --install-dir=$NDKROOT/android_armeabi   

export CC="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-gcc --sysroot=$NDKROOT/android_armeabi/sysroot"
export CXX="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-g++ --sysroot=$NDKROOT/android_armeabi/sysroot"
export AR="$NDKROOT/android_armeabi/bin/arm-linux-androideabi-ar"
export SYSROOT="$NDKROOT/android_armeabi/sysroot"
export PATH="$NDKROOT/android_armeabi/bin":$PATH

./configure --host=arm-linux-androideabi

I was able to compile various open source libs with this recipe. Good luck!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文