Lines Matching refs:ndk
169 def __init__(self, sdk, ndk):
171 self.ndk = ndk
194 if not os.path.exists(self.env.ndk.path):
195 raise Exception("Android NDK not found at %s" % self.env.ndk.path)
197 if not NDKEnv.isHostOsSupported(self.env.ndk.hostOsName):
198 raise Exception("NDK '%s' is not supported on this machine" % self.env.ndk.hostOsName)
200 if self.env.ndk.version[0] < 15:
201 raise Exception("Android NDK version %d is not supported; build requires NDK version >= 15" % (self.env.ndk.version[0]))
358 '-DDEQP_TARGET_TOOLCHAIN=ndk-modern',
361 '-DANDROID_NDK_PATH=%s' % config.env.ndk.path,
906 ndkBuildPath = which('ndk-build')
968 parser.add_argument('--ndk',
1026 ndk = NDKEnv(os.path.realpath(args.ndkPath))
1029 env = Environment(sdk, ndk)
1040 print(" --ndk=%s" % args.ndkPath)