/ndk/tests/build/standalone-toolchain/ |
D | test.py | 27 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/ |
D | build-gcc.py | 46 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)
|
D | gen-platforms.sh | 103 --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 …]
|
D | build-gdbserver.py | 41 if args.arch is not None: 42 arches = [args.arch] 45 for arch in arches: 46 toolchain = build_support.arch_to_toolchain(arch)
|
D | package.py | 73 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]
|
D | build-platforms.py | 39 if args.arch is not None: 40 arches = [args.arch]
|
D | build-ndk-sysroot.sh | 130 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
|
D | dev-platform-expand-all.sh | 59 …$PROGDIR/dev-platform-expand.sh --platform=$PLATFORM --src-dir=$SRCDIR --dst-dir=$DSTDIR --arch=$(…
|
D | dev-platform-import.sh | 150 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/ |
D | build_support.py | 72 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/ |
D | checkbuild.py | 136 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 …]
|
D | ndk-gdb.py | 413 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++/ |
D | build.py | 39 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/ |
D | build.py | 39 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/ |
D | add-platform.mk | 21 _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…
|
D | add-toolchain.mk | 69 $(_toolchain).arch := $(_arch) 85 $(eval NDK_ABI.$(_abi).arch := $(sort $(NDK_ABI.$(_abi).arch) $(_arch)))\
|
D | init.mk | 552 _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))\
|
D | setup-abi.mk | 21 TARGET_ARCH := $(strip $(NDK_ABI.$(TARGET_ARCH_ABI).arch))
|
/ndk/sources/cxx-stl/llvm-libc++/ |
D | build.py | 42 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/ |
D | test_cpufeatures.c | 49 #define CHECK(arch, name) \ in main() argument 50 if ((features & ANDROID_CPU_## arch ##_FEATURE_## name) != 0) { \ in main()
|
/ndk/tests/build/issue64679-prctl/ |
D | build.sh | 43 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/ |
D | build.sh | 12 LIB=$(cd $NDK && find platforms -name "libc.so" | sed -e 's!^!'$NDK'/!' | grep arch-$ARCH)
|
/ndk/sources/android/support/src/stdio/ |
D | fpmath.h | 42 #error Unknown arch!
|
/ndk/tests/device/b8708181-Vector4/jni/ |
D | Vector4.cpp | 26 #error unknown arch for type float32x4_t
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
D | lit.ndk.cfg.in | 33 config.sysroot = os.path.join(ndk, "platforms/android-21/arch-%ARCH%/")
|