Skip to content Skip to sidebar Skip to footer

Android Ndk-build Error Make.exe: *** Create_child_process: Duplicatehandle(in) Failed (e=6)

I'm relatively new to Android and I have a problem using the ndk-build command. I use the NDK r9d under Windows 7 64bits. When I run my build system which creates my Android projec

Solution 1:

Finaly, I found a solution to my problem here:

http://www.zeusedit.com/zforum/viewtopic.php?t=174

I am not sure about what the problem was but according to this link, it was related to the make environment and the handles.

The solution : Instead of using the createProcess function (from Windows) directly to call ndk-build.cmd, I created a batch file containing:

start ndk-build.cmd

And I called this batch (.bat) via the createProcess function.

I let you see the link for more details.

Post a Comment for "Android Ndk-build Error Make.exe: *** Create_child_process: Duplicatehandle(in) Failed (e=6)"