Home
last modified time | relevance | path

Searched refs:arch (Results 1 – 25 of 40) sorted by relevance

12

/ndk/tests/build/standalone-toolchain/
Dtest.py27 def make_standalone_toolchain(arch, platform, toolchain, install_dir): argument
34 if arch is not None:
35 cmd.append('--arch=' + arch)
40 toolchain_triple = build_support.arch_to_toolchain(arch)
47 def test_standalone_toolchain(arch, toolchain, install_dir): argument
49 triple = build_support.arch_to_triple(arch)
51 if arch == 'x86':
69 arch = 'arm'
71 arch = build_support.abi_to_arch(abi)
75 make_standalone_toolchain(arch, platform, toolchain, install_dir)
[all …]
/ndk/build/tools/
Dbuild-gcc.py46 def package_gcc(package_dir, host_tag, arch, version): argument
47 toolchain_name = build_support.arch_to_toolchain(arch) + '-' + version
50 package_name = 'gcc-{}-{}.zip'.format(arch, host_tag)
63 if args.arch is not None:
64 arches = [args.arch]
67 for arch in arches:
68 package_gcc(args.dist_dir, host_tag, arch, GCC_VERSION)
Dgen-platforms.sh103 --arch=*)
558 -I$SRCDIR/../../bionic/libc/arch-common/bionic \
559 -I$SRCDIR/../../bionic/libc/arch-$ARCH/include \
642 SYSROOT_DST=$PLATFORM_DST/arch-$ARCH/usr
700 … copy_src_directory $PLATFORM_SRC/arch-$ARCH/include $SYSROOT_DST/include "$ARCH system headers"
709 … copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib $SYSROOT_DST/lib "x86 sysroot libs"
710 … copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib64 $SYSROOT_DST/lib64 "x86_64 sysroot libs"
711 … copy_src_directory $PLATFORM_SRC/arch-$ARCH/libx32 $SYSROOT_DST/libx32 "x32 sysroot libs"
714 …copy_src_directory $PLATFORM_SRC/arch-$ARCH/lib $SYSROOT_DST/lib "mips -mabi=32 -mips32 sysroot li…
715 …copy_src_directory $PLATFORM_SRC/arch-$ARCH/libr2 $SYSROOT_DST/libr2 "mips -mabi=32 -mips32r2 sysr…
[all …]
Dbuild-gdbserver.py41 if args.arch is not None:
42 arches = [args.arch]
45 for arch in arches:
46 toolchain = build_support.arch_to_toolchain(arch)
Dpackage.py73 for arch in arches:
74 triple = build_support.arch_to_triple(arch)
75 toolchain = build_support.arch_to_toolchain(arch)
76 for abi in build_support.arch_to_abis(arch):
78 abi=abi, arch=arch, host=host_tag, triple=triple,
335 if args.arch is not None:
336 arches = [args.arch]
Dbuild-platforms.py39 if args.arch is not None:
40 arches = [args.arch]
Dbuild-ndk-sysroot.sh130 SYSROOT=$NDK_ROOT/build/platforms/$PLATFORM/arch-$ABI
284 arch_headers $LIBC_ROOT/kernel/arch-$ARCH
288 arch_headers $LIBC_ROOT/arch-$ARCH/include
294 tar cjf $PKGFILE build/platforms/$PLATFORM/arch-$ARCH
Ddev-platform-expand-all.sh59 …$PROGDIR/dev-platform-expand.sh --platform=$PLATFORM --src-dir=$SRCDIR --dst-dir=$DSTDIR --arch=$(…
Ddev-platform-import.sh150 PLATFORM_ROOT=$OUT_DIR/android-$PLATFORM/arch-$ARCH
286 log "Copying $arch system header: $header"
329 copy_arch_system_headers_from $ANDROID_ROOT/bionic/libc/arch-$ARCH/include
330 copy_arch_kernel_headers_from $ANDROID_ROOT/bionic/libc/kernel/arch-$ARCH
/ndk/build/lib/
Dbuild_support.py72 def arch_to_toolchain(arch): argument
73 return dict(zip(ALL_ARCHITECTURES, ALL_TOOLCHAINS))[arch]
76 def arch_to_triple(arch): argument
77 return dict(zip(ALL_ARCHITECTURES, ALL_TRIPLES))[arch]
84 def arch_to_abis(arch): argument
92 }[arch]
95 def abi_to_arch(arch): argument
105 }[arch]
114 arch = toolchain_to_arch(toolchain)
115 version = default_api_level(arch)
[all …]
/ndk/
Dcheckbuild.py136 if args.arch is not None:
137 package_args.append('--arch={}'.format(args.arch))
156 if args.arch is not None:
157 abis = build_support.arch_to_abis(args.arch)
267 def pack_binutils(arch, host_tag, out_dir, binutils_path): argument
268 archive_name = '-'.join(['binutils', arch, host_tag])
272 def get_prebuilt_gcc(host, arch): argument
276 toolchain = build_support.arch_to_toolchain(arch)
285 if args.arch is not None:
286 arches = [args.arch]
[all …]
Dndk-gdb.py413 def get_gdbserver_path(args, package_name, app_data_dir, arch): argument
425 local_path = local_path.format(NDK_PATH, arch)
426 remote_path = "/data/local/tmp/{}-gdbserver".format(arch)
432 destination = "{}/{}-gdbserver".format(app_data_dir, arch)
602 arch = abi_to_arch(abi)
603 gdbserver_path = get_gdbserver_path(args, pkg_name, app_data_dir, arch)
/ndk/sources/cxx-stl/gnu-libstdc++/
Dbuild.py39 if args.arch is not None:
40 arches = [args.arch]
43 for arch in arches:
44 abis.extend(build_support.arch_to_abis(arch))
/ndk/sources/cxx-stl/stlport/
Dbuild.py39 if args.arch is not None:
40 arches = [args.arch]
43 for arch in arches:
44 abis.extend(build_support.arch_to_abis(arch))
/ndk/build/core/
Dadd-platform.mk21 _abis := $(strip $(notdir $(wildcard $(NDK_PLATFORMS_ROOT)/$(_platform)/arch-*)))
22 _abis := $(_abis:arch-%=%)
31 …$(eval NDK_PLATFORM_$(_platform)_$(_abi)_SYSROOT := $(NDK_PLATFORMS_ROOT)/$(_platform)/arch-$(_abi…
Dadd-toolchain.mk69 $(_toolchain).arch := $(_arch)
85 $(eval NDK_ABI.$(_abi).arch := $(sort $(NDK_ABI.$(_abi).arch) $(_arch)))\
Dinit.mk552 _archs := $(sort $(strip $(notdir $(wildcard $(NDK_PLATFORMS_ROOT)/android-*/arch-*))))
553 NDK_FOUND_ARCHS := $(_archs:arch-%=%)
593 $(if $(filter-out 1,$(words $(NDK_ABI.$(_abi).arch))),\
631 $(foreach arch,$(NDK_ALL_ARCHS),\
632 $(call ndk_log, $(space)$(space)$(arch): $(NDK_ARCH.$(arch).abis))\
Dsetup-abi.mk21 TARGET_ARCH := $(strip $(NDK_ABI.$(TARGET_ARCH_ABI).arch))
/ndk/sources/cxx-stl/llvm-libc++/
Dbuild.py42 if args.arch is not None:
43 arches = [args.arch]
46 for arch in arches:
47 abis.extend(build_support.arch_to_abis(arch))
/ndk/tests/device/test-cpufeatures/jni/
Dtest_cpufeatures.c49 #define CHECK(arch, name) \ in main() argument
50 if ((features & ANDROID_CPU_## arch ##_FEATURE_## name) != 0) { \ in main()
/ndk/tests/build/issue64679-prctl/
Dbuild.sh43 if [ ! -d $ANDROID_NDK_ROOT/platforms/android-$API_LEVEL/arch-$ARCH ]; then
46 …HEADERS=$(cd $ANDROID_NDK_ROOT/platforms/android-$API_LEVEL/arch-$ARCH/usr/include ; ls *.h sys/*.…
/ndk/tests/build/libc_no_atexit/
Dbuild.sh12 LIB=$(cd $NDK && find platforms -name "libc.so" | sed -e 's!^!'$NDK'/!' | grep arch-$ARCH)
/ndk/sources/android/support/src/stdio/
Dfpmath.h42 #error Unknown arch!
/ndk/tests/device/b8708181-Vector4/jni/
DVector4.cpp26 #error unknown arch for type float32x4_t
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/
Dlit.ndk.cfg.in33 config.sysroot = os.path.join(ndk, "platforms/android-21/arch-%ARCH%/")

12