简体   繁体   中英

Android ndk-build failed

I'm trying to debug .so library, using NDK for Android.

I'm able to build .so library, using ndk-build . But when I want to debug my library, I set ndk-build NDK_DEBUG = 1 and receive following error: make: * empty variable name. Stop.

And also I receive the error: Unable to launch cygpath. Is Cygwin on the path? Unable to launch cygpath. Is Cygwin on the path? Appreciate any help, thanks

You must remove the spaces in the assignment, ie

ndk-build NDK_DEBUG=1

rather than

ndk-build NDK_DEBUG = 1

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM