diff options
author | ArchLinus <archlinus123@gmail.com> | 2023-12-29 09:32:14 -0500 |
---|---|---|
committer | ArchLinus <archlinus123@gmail.com> | 2023-12-30 13:56:46 -0500 |
commit | 718d0baea3e310391c6feb5b61b8e2dda6a08533 (patch) | |
tree | 977581e2c13a1c1cad46de8d2d0bf42cd61e17fe | |
parent | 1c19d627aac5410b115bfe80277bc3c916a8420d (diff) | |
download | redot-cpp-718d0baea3e310391c6feb5b61b8e2dda6a08533.tar.gz |
Add an error message if android NDK is not installed
-rw-r--r-- | tools/android.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/android.py b/tools/android.py index bee58c4..0c25354 100644 --- a/tools/android.py +++ b/tools/android.py @@ -64,6 +64,12 @@ def generate(env): elif sys.platform == "darwin": toolchain += "darwin-x86_64" env.Append(LINKFLAGS=["-shared"]) + + if not os.path.exists(toolchain): + print("ERROR: Could not find NDK toolchain at " + toolchain + ".") + print("Make sure NDK version " + get_ndk_version() + " is installed.") + env.Exit(1) + env.PrependENVPath("PATH", toolchain + "/bin") # This does nothing half of the time, but we'll put it here anyways # Get architecture info |