Ver código fonte

Add an error message if android NDK is not installed

(cherry picked from commit 718d0baea3e310391c6feb5b61b8e2dda6a08533)
ArchLinus 1 ano atrás
pai
commit
82475b215b
1 arquivos alterados com 6 adições e 0 exclusões
  1. 6 0
      tools/android.py

+ 6 - 0
tools/android.py

@@ -52,6 +52,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