Searched refs:compiler (Results 1 – 25 of 91) sorted by relevance
1234
/ndk/tests/abcc/jni/device/ |
D | main.cpp | 40 std::auto_ptr<BitcodeCompiler> compiler(new DeviceBitcodeCompiler(lib_dir, sysroot)); in Java_compiler_abcc_AbccService_genLibs() local 41 compiler->prepare(); in Java_compiler_abcc_AbccService_genLibs() 42 if (compiler->returnCode() != RET_OK) { in Java_compiler_abcc_AbccService_genLibs() 47 compiler->cleanupPre(); in Java_compiler_abcc_AbccService_genLibs() 48 if (compiler->returnCode() != RET_OK) { in Java_compiler_abcc_AbccService_genLibs() 59 compiler->execute(); in Java_compiler_abcc_AbccService_genLibs() 68 compiler->cleanupPost(); in Java_compiler_abcc_AbccService_genLibs() 70 if (compiler->returnCode() != RET_OK) { in Java_compiler_abcc_AbccService_genLibs()
|
/ndk/tests/abcc/jni/host/ |
D | main.cpp | 119 std::auto_ptr<BitcodeCompiler> compiler; in main() local 121 compiler.reset(new HostBitcodeCompiler(abi, sysroot, toolchain_bin, in main() 125 compiler.reset(new HostBitcodeCompiler(abi, sysroot, ndk_dir, toolchain_bin, in main() 129 compiler->prepare(); in main() 130 if (compiler->returnCode() != RET_OK) { in main() 135 compiler->cleanupPre(); in main() 136 if (compiler->returnCode() != RET_OK) { in main() 141 compiler->execute(); in main() 142 compiler->cleanupPost(); in main() 144 if (compiler->returnCode() != RET_OK) { in main()
|
/ndk/sources/android/ |
D | .gitignore | 1 compiler-rt/libs
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
D | _ioserr.h | 11 # error STLport iostreams header cannot be used; your compiler do not support it.
|
/ndk/tests/device/test-basic-rtti/ |
D | README | 4 This is really a way to check that the C++ compiler properly links against
|
/ndk/tests/device/test-gabi++/ |
D | README | 4 This is really a way to check that the C++ compiler properly links against
|
/ndk/build/tools/toolchain-patches/gcc/ |
D | 0004-Rename-libstdc++.so-to-libgnustl_shared.so.patch | 22 # Cross compiler support. 45 # Cross compiler support.
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/ |
D | cstddef | 50 // Re-use the compiler's <stddef.h> max_align_t where possible. 53 // If compiler doesn't have max_align_t (ie. clang), and it's on 32-bit Android, typedef max_align_…
|
/ndk/tests/device/test-basic-exceptions/ |
D | README | 8 This is really a way to check that the C++ compiler properly links against
|
/ndk/build/tools/toolchain-licenses/ |
D | COPYING.RUNTIME | 38 "Target Code" refers to output from any compiler for a real or virtual 42 format that is used as a compiler intermediate representation, or used 43 for producing a compiler intermediate representation.
|
/ndk/sources/host-tools/make-3.81/config/ |
D | signed.m4 | 17 [Define to empty if the C compiler doesn't support this keyword.])
|
D | longdouble.m4 | 10 dnl Test whether the compiler supports the 'long double' type.
|
/ndk/sources/cxx-stl/stlport/stlport/stl/config/ |
D | _apple.h | 13 # error Apple's MPW SCpp v.8.9.0 or better compiler required
|
/ndk/sources/third_party/googletest/googletest/ |
D | README | 41 * A C++98-standard-compliant compiler 165 be used in the compiler environment of your choice. The typical 201 versions of Microsoft runtime libraries (the /MD or the /MDd compiler 237 defining control macros on the compiler command line. Generally, 250 compiler doesn't provide TR1 tuple. 260 to the compiler flags while compiling Google Test and your tests. If 265 to the compiler flags instead. 290 compiler and/or linker to select the pthread library, or you'll get 293 script, you'll need to read your compiler and linker's manual to 306 to the compiler flags. You'll also need to tell the linker to produce [all …]
|
/ndk/build/tools/ |
D | download-toolchain-sources.sh | 206 toolchain_clone compiler-rt 241 toolchain_checkout "llvm-$LLVM_VERSION" $LLVM_BRANCH compiler-rt .
|
D | dev-defaults.sh | 40 COMPILER_RT_SUBDIR=sources/android/compiler-rt
|
D | build-compiler-rt.sh | 83 BUILD_DIR=$NDK_TMPDIR/build-compiler-rt
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/ |
D | interaction_based.ipp | 88 #endif // not ancient compiler
|
/ndk/sources/cxx-stl/stlport/stlport/ |
D | slist | 41 //on a compiler basis.
|
D | strstream | 43 * _STLP_IMPORT_VENDOR_STD check if the native compiler library do not grant
|
/ndk/sources/host-tools/make-3.81/ |
D | makefile.com | 101 $! compiler
|
D | configh.dos | 76 /* Define if your compiler conforms to the ANSI C standard. */ 104 /* Define to 1 if the C compiler supports function prototypes. */
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/ |
D | testit_android | 113 --with-compiler-rt) 191 LIBCOMPILER_RT_LIBS=$(cd "$LIBCXX_ROOT"/../../../android/compiler-rt && pwd)/libs/$TARGET_ABI
|
/ndk/sources/cxx-stl/llvm-libc++abi/libcxxabi/test/ |
D | testit_android | 106 --with-compiler-rt) 187 LIBCOMPILER_RT_LIBS=$(cd "$LIBCXX_ROOT"/../../../android/compiler-rt && pwd)/libs/$TARGET_ABI
|
/ndk/sources/cxx-stl/llvm-libc++/patches.android/ |
D | 0007-Fix-libc-compiler-error-when-calling-std-feof.patch | 4 Subject: [PATCH 07/12] Fix libc++ compiler error when calling std::feof()
|
1234