HomeSort by relevance Sort by last modified time
    Searched refs:host_arch (Results 1 - 4 of 4) sorted by null

  /external/v8/gypfiles/
detect_v8_host_arch.py 43 host_arch = platform.machine()
47 if re.match(r'i.86', host_arch) or host_arch == 'i86pc':
48 host_arch = 'ia32'
49 elif host_arch in ['x86_64', 'amd64']:
50 host_arch = 'x64'
51 elif host_arch.startswith('arm'):
52 host_arch = 'arm'
53 elif host_arch == 'aarch64':
54 host_arch = 'arm64
    [all...]
  /external/scrypt/
Scrypt-config.mk 93 ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
94 host_arch := x86 macro
96 host_arch := unknown_arch macro
99 host_c_flags := $(common_c_flags) $($(host_arch)_c_flags) $(local_c_flags)
101 host_src_files := $(common_src_files) $($(host_arch)_src_files)
102 host_src_files := $(filter-out $($(host_arch)_exclude_files), $(host_src_files))
import_scrypt.sh 336 ifeq (\$(HOST_OS)-\$(HOST_ARCH),linux-x86)
337 host_arch := x86
339 host_arch := unknown_arch
342 host_c_flags := \$(common_c_flags) \$(\$(host_arch)_c_flags) \$(local_c_flags)
344 host_src_files := \$(common_src_files) \$(\$(host_arch)_src_files)
345 host_src_files := \$(filter-out \$(\$(host_arch)_exclude_files), \$(host_src_files))
  /development/testrunner/
android_build.py 74 The triple (HOST_OS, HOST_ARCH, HOST_OS-HOST_ARCH).
87 host_arch = re.search("HOST_ARCH=(\w+)", config).group(1)
88 if not (host_os and host_arch):
91 return (host_os, host_arch, "%s-%s" % (host_os, host_arch))

Completed in 512 milliseconds