Lines Matching refs:ndk
167 def __init__(self, sdk, ndk): argument
169 self.ndk = ndk
190 if not os.path.exists(self.env.ndk.path):
191 raise Exception("Android NDK not found at %s" % self.env.ndk.path)
193 if not NDKEnv.isHostOsSupported(self.env.ndk.hostOsName):
194 raise Exception("NDK '%s' is not supported on this machine" % self.env.ndk.hostOsName)
196 if self.env.ndk.version[0] < 15:
197 …oid NDK version %d is not supported; build requires NDK version >= 15" % (self.env.ndk.version[0]))
339 '-DANDROID_NDK_HOST_OS=%s' % config.env.ndk.hostOsName,
340 '-DANDROID_NDK_PATH=%s' % config.env.ndk.path,
955 ndk = NDKEnv(os.path.realpath(args.ndkPath)) variable
958 env = Environment(sdk, ndk)