I'm attempting to build the Linphone app, according the instructions here:
https://github.com/BelledonneCommunications/linphone-android
When I run prepare.py
, I get the following error:
ERROR: The following binaries are missing: ndk-build. Please install them.
I have my path set to include the NDK folder. The problem is, there's no ndk-build.exe
in that folder, or anywhere on my machine. There's a ndk-build.cmd
file, but the prepare.py
is specifically looking for ndk-build.exe
.
I've downloaded and looked through android-ndk-r15c-windows-x86_64.zip
, android-ndk-r16b-windows-x86_64.zip
, android-ndk-r17c-windows-x86_64.zip
and android-ndk-r18b-windows-x86_64.zip
and none of them contain ndk-build.exe.
I know I'm missing something, I'm just not sure what it is.
Here's the line from prepare.py
looking for ndk-build.exe
:
ndk_build = find_executable('ndk-build')