Debug vs. Release builds in the Android NDK

前端 未结 3 1755
一向
一向 2021-02-02 03:01

I\'m working on a large game engine that must be ported to Android. All the code is C/C++, so we are porting via the NDK. I\'ve got everything building, but after lots of scou

3条回答
  •  悲&欢浪女
    2021-02-02 03:38

    You're not required to use the Android.mk system to build your .so's. Personally, I use my own Makefile's with the targets I need and this allows for very standardized debug vs. release build specification.

提交回复
热议问题