Ndk-build: CreateProcess: make (e=87): The parameter is incorrect

前端 未结 3 1645
醉梦人生
醉梦人生 2020-12-07 21:23

I get an error when build static lib with NDK on Windows platform:

process_begin: CreateProcess( \"PATH\"\\android-ndk-r8b\\toolchains\\arm-linux-androideabi         


        
3条回答
  •  情歌与酒
    2020-12-07 21:55


    Special Thanks to @mbrenon !

    Remember to set both of LOCAL_SHORT_COMMANDS(Android.mk) & APP_SHORT_COMMANDS(Application.mk) as the following.

    LOCAL_SHORT_COMMANDS := true
    APP_SHORT_COMMANDS := true
    

    Hope this helps ! :)

提交回复
热议问题