I want to build Bob from source, on the Windows platform building for Android, so that I can investigate https://github.com/defold/defold/issues/5630
I’ve followed the setup instructions in README_BUILD.md, README_ANDROID.md and README_SETUP_WINDOWS.md but something isn’t working.
Running these commands:
cd d:/defold
./scripts/build.py shell
cd d:/defold
./scripts/build.py install_ext --platform=armv7-android --package-path=./packages/
./scripts/build.py build_engine --platform=armv7-android
build_engine fails with:
At least one compiler (g++, …) must be selected
Prior to that it outputs
Checking for program gcc,cc : ok d:\defold\tmp\dynamo_home\ext\SDKs\android-ndk-r20/toolchains/llvm/prebuilt/win32-x86_64/bin/armv7a-linux-androideabi16-clang
but that path doesn’t seem to exist.
README_ANDROID.md states
- The Android NDK is managed as a package and automatically installed via install_ext from the
build.py
script
but there’s no evidence that the NDK has been installed, unless I need to call install_ext again with some other parameter?