Compare commits

..

2 Commits

Author SHA1 Message Date
ArchLinus bd9341f53b
Merge 70dded9c3d into 3f44e9b404 2023-12-29 15:14:40 -05:00
ArchLinus 70dded9c3d Add an error message if android NDK is not installed 2023-12-29 09:32:55 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def generate(env):
env.Append(LINKFLAGS=["-shared"])
if not os.path.exists(toolchain):
print("ERROR: Could not find NDK toolchain at " + toolchain + ".")
print("ERROR: Could not find NDK toolchain at " + toolchain + ".")
print("Make sure NDK version " + get_ndk_version() + " is installed.")
env.Exit(1)