Searched +full:libcxx +full:- (Results 1 – 25 of 180) sorted by relevance
12345678
/external/libcxx/docs/ |
D | index.rst | 19 * ABI compatibility with gcc's libstdc++ for some low-level features 32 --------------------------- 44 -------------- 73 particular rvalue references and move-only types) requires changes to 81 ----------------------------- 104 --------------------- 106 * C++11 - Complete 107 * `C++14 - Complete <http://libcxx.llvm.org/cxx1y_status.html>`__ 108 * `C++17 - In Progress <http://libcxx.llvm.org/cxx1z_status.html>`__ 109 * `Post C++14 Technical Specifications - In Progress <http://libcxx.llvm.org/ts1z_status.html>`__ [all …]
|
D | UsingLibcxx.rst | 13 .. code-block:: bash 15 $ clang++ -stdlib=libc++ test.cpp 16 $ clang++ -std=c++11 -stdlib=libc++ test.cpp 19 and the ``-stdlib=libc++`` is not required. 21 .. _alternate libcxx: 26 .. code-block:: bash 28 $ clang++ -std=c++11 -stdlib=libc++ -nostdinc++ \ 29 -I<libcxx-install-prefix>/include/c++/v1 \ 30 -L<libcxx-install-prefix>/lib \ 31 -Wl,-rpath,<libcxx-install-prefix>/lib \ [all …]
|
D | TestingLibcxx.rst | 12 libc++ tests is by using make check-libcxx. However since libc++ can be used 22 -------------------------- 30 .. code-block:: bash 36 .. code-block:: bash 38 $ export LIBCXX_SITE_CONFIG=path/to/build-libcxx/test/lit.site.cfg 41 ------------- 47 .. code-block:: bash 49 $ cd path/to/src/libcxx 50 $ lit -sv test/std/re # Run all of the std::regex tests 51 $ lit -sv test/std/depr/depr.c.headers/stdlib_h.pass.cpp # Run a single test [all …]
|
/external/Reactive-Extensions/RxCpp/projects/scripts/ |
D | install_libcxx.sh | 5 svn --quiet co http://llvm.org/svn/llvm-project/libcxx/trunk libcxx 6 mkdir libcxx/build 7 (cd libcxx/build && cmake .. -DLIBCXX_CXX_ABI=libstdc++ -DLIBCXX_CXX_ABI_INCLUDE_PATHS="/usr/includ… 8 make -C libcxx/build cxx -j2 9 sudo cp libcxx/build/lib/libc++.so.1.0 /usr/lib/ 10 sudo cp -r libcxx/build/include/c++/v1 /usr/include/c++/v1/ 11 sudo ln -sf /usr/lib/libc++.so.1.0 /usr/lib/libc++.so 12 sudo ln -sf /usr/lib/libc++.so.1.0 /usr/lib/libc++.so.1
|
/external/libcxx/utils/libcxx/android/test/ |
D | config.py | 5 import libcxx.test.config 6 import libcxx.android.compiler 7 import libcxx.android.test.format 10 class Configuration(libcxx.test.config.Configuration): 53 self.cxx = libcxx.android.compiler.AndroidCXXCompiler( 71 '-DLIBCXX_FILESYSTEM_STATIC_TEST_ROOT="{}"'.format(static_env)) 79 '-DLIBCXX_FILESYSTEM_DYNAMIC_TEST_ROOT="{}"'.format(dynamic_env)) 86 '-DLIBCXX_FILESYSTEM_DYNAMIC_TEST_HELPER="{} {}"'.format( 90 static_env = '/data/local/tmp/libcxx/static_test_env' 92 '-DLIBCXX_FILESYSTEM_STATIC_TEST_ROOT="{}"'.format(static_env)) [all …]
|
D | format.py | 3 import lit.util # pylint: disable=import-error 5 from libcxx.android.executors import AdbExecutor 6 from libcxx.test.executor import LocalExecutor, TimeoutExecutor 7 import libcxx.test.format 8 import libcxx.android.adb as adb 11 class HostTestFormat(libcxx.test.format.LibcxxTestFormat): 12 # pylint: disable=super-init-not-called 24 # we're 32-bit or 64-bit, scan testconfig.mk, or just add both 59 cmd = ['adb', 'shell', 'rm', '-rf', self._working_directory(exec_file)]
|
/external/perfetto/buildtools/ |
D | BUILD.gn | 7 # http://www.apache.org/licenses/LICENSE-2.0 21 "-Wno-unknown-warning-option", 22 "-Wno-global-constructors", 23 "-Wno-covered-switch-default", 24 "-Wno-used-but-marked-unused", 25 "-Wno-covered-switch-default", 26 "-Wno-global-constructors", 27 "-Wno-used-but-marked-unused", 28 "-Wno-inconsistent-missing-override", 29 "-Wno-unused-member-function", [all …]
|
/external/libcxx/utils/ci/ |
D | macos-backdeployment.sh | 3 set -ue 7 …-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <STD> --arch <ARCHI… 9 This script is used to continually test the back-deployment use case of libc++ and libc++abi on Mac… 11 --libcxx-root Full path to the root of the libc++ repository to test. 12 --libcxxabi-root Full path to the root of the libc++abi repository to test. 13 --std Version of the C++ Standard to run the tests under (c++03, c++11, etc..). 14 --arch Architecture to build the tests for (32, 64). 15 …--deployment-target The deployment target to run the tests for. This should be a version number of… 16 …--sdk-version The version of the SDK to test with. This should be a version number of MacOS … 17 …[--lit-args] Additional arguments to pass to lit (optional). If there are multiple argument… [all …]
|
D | macos-trunk.sh | 3 set -ue 7 $(basename ${0}) [-h|--help] --libcxx-root <LIBCXX-ROOT> --libcxxabi-root <LIBCXXABI-ROOT> --std <S… 11 --libcxx-root Full path to the root of the libc++ repository to test. 12 --libcxxabi-root Full path to the root of the libc++abi repository to test. 13 --std Version of the C++ Standard to run the tests under (c++03, c++11, etc..). 14 --arch Architecture to build the tests for (32, 64). 15 …[--lit-args] Additional arguments to pass to lit (optional). If there are multiple arguments,… 16 …[--no-cleanup] Do not cleanup the temporary directory that was used for testing at the end. Thi… 17 [-h, --help] Print this help. 21 while [[ $# -gt 0 ]]; do [all …]
|
/external/libunwind_llvm/test/ |
D | lit.cfg | 1 # -*- Python -*- vim: set ft=python ts=4 sw=4 expandtab tw=79: 27 # If libcxx_source_root isn't specified in the config, assume that the libcxx 31 libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx') 33 if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')): 36 lit_config.fatal('Could not find libcxx test directory for test imports' 44 import libcxx.test.config 45 libcxx.test.config.loadSiteConfig( 50 obj_root = tempfile.mkdtemp(prefix='libunwind-testsuite-')
|
/external/libcxxabi/test/ |
D | lit.cfg | 1 # -*- Python -*- vim: set ft=python ts=4 sw=4 expandtab tw=79: 27 # If libcxx_source_root isn't specified in the config, assume that the libcxx 31 libcxx_src_root = os.path.join(config.test_source_root, '../../libcxx') 33 if os.path.isfile(os.path.join(libcxx_test_src_root, 'libcxx', '__init__.py')): 36 lit_config.fatal('Could not find libcxx test directory for test imports' 44 import libcxx.test.config 45 libcxx.test.config.loadSiteConfig( 50 obj_root = tempfile.mkdtemp(prefix='libcxxabi-testsuite-')
|
/external/perfetto/gn/standalone/libc++/ |
D | libc++.gni | 7 # http://www.apache.org/licenses/LICENSE-2.0 21 # libstdc++ and LLVM's libc++ (aka libcxx). By default Linux provides libstdc++ 23 # Android switched to libcxx. 24 # buildtools/libcxx(abi) contains a fixed version of the libcxx, the same one 30 # Now, there are two reasons for using the checked in copy of libcxx: 32 # because they need to be instrumented with -fsanitize as well (see 47 libcxx_prefix = "//buildtools/libcxx"
|
/external/clang/test/Driver/ |
D | darwin-stdlib.cpp | 1 // RUN: %clang -target x86_64-apple-darwin -arch arm64 -miphoneos-version-min=7.0 %s -### 2>&1 | Fi… 2 // RUN: %clang -target x86_64-apple-darwin -mmacosx-version-min=10.8 %s -### 2>&1 | FileCheck %s --… 3 // RUN: %clang -target x86_64-apple-darwin -mmacosx-version-min=10.9 %s -### 2>&1 | FileCheck %s --… 4 // RUN: %clang -target x86_64-apple-darwin -arch armv7s -miphoneos-version-min=6.1 %s -### 2>&1 | F… 5 // RUN: %clang -target x86_64-apple-darwin -arch armv7s -miphoneos-version-min=7.0 %s -### 2>&1 | F… 6 // RUN: %clang -target x86_64-apple-darwin -arch armv7k %s -### 2>&1 | FileCheck %s --check-prefix=… 9 // properly. At the moment this is done by passing -stdlib=libc++ down to the 13 // CHECK-LIBCXX: -stdlib=libc++ 15 // CHECK-LIBSTDCXX-NOT: -stdlib=libc++ 16 // CHECK-LIBSTDCXX-NOT: -stdlib=libstdc++
|
/external/libcxx/test/ |
D | CMakeLists.txt | 9 set(LIBCXX_LIT_VARIANT "libcxx" CACHE STRING 44 # By default, for non-standalone builds, libcxx and libcxxabi share a library 51 set(LIBCXX_TARGET_INFO "libcxx.test.target_info.LocalTI" CACHE STRING 56 set(AUTO_GEN_COMMENT "## Autogenerated by libcxx configuration.\n# Do not edit!") 69 add_lit_testsuite(check-cxx 70 "Running libcxx tests" 74 add_custom_target(check-libcxx DEPENDS check-cxx) 103 add_definitions(-DLIBCXX_FILESYSTEM_STATIC_TEST_ROOT="${STATIC_ROOT}") 106 add_definitions(-DLIBCXX_FILESYSTEM_DYNAMIC_TEST_ROOT="${DYNAMIC_ROOT}") 109 add_definitions(-DLIBCXX_FILESYSTEM_DYNAMIC_TEST_HELPER="${DYNAMIC_HELPER}")
|
D | lit.cfg | 1 # -*- Python -*- vim: set ft=python ts=4 sw=4 expandtab tw=79: 25 import libcxx.test.config 26 libcxx.test.config.loadSiteConfig(lit_config, config, 'libcxx_site_config', 37 obj_root = tempfile.mkdtemp(prefix='libcxx-testsuite-') 43 cfg_variant = getattr(config, 'configuration_variant', 'libcxx')
|
/external/libcxxabi/www/ |
D | index.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 3 <!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ --> 6 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 25 <a href="https://libcxx.llvm.org/">libc++</a> 26 <a href="http://lists.llvm.org/mailman/listinfo/libcxx-dev">libcxx-dev</a> 27 <a href="http://lists.llvm.org/mailman/listinfo/libcxx-commits">libcxx-commits</a> 29 <a href="http://llvm.org/svn/llvm-project/libcxxabi/trunk/">Browse SVN</a> 30 <a href="http://llvm.org/viewvc/llvm-project/libcxxabi/trunk/">Browse ViewVC</a> 35 <!--*********************************************************************--> 37 <!--*********************************************************************--> [all …]
|
/external/libcxx/utils/libcxx/ |
D | compiler.py | 1 #===----------------------------------------------------------------------===## 8 #===----------------------------------------------------------------------===## 12 import libcxx.util 54 self.verify_supported = self.hasCompileFlag(['-Xclang', 55 '-verify-ignore-unexpected']) 58 '-Xclang', '-verify', 59 '-Xclang', '-verify-ignore-unexpected=note', 60 '-ferror-limit=1024' 89 compiler_type = 'apple-clang' 110 cmd += ['-o', out] [all …]
|
/external/libcxx/www/ |
D | index.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 3 <!-- Material used from: HTML 4.01 specs: http://www.w3.org/TR/html401/ --> 6 <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 26 <a href="https://lists.llvm.org/mailman/listinfo/libcxx-dev">libcxx-dev</a> 27 <a href="https://lists.llvm.org/mailman/listinfo/libcxx-commits">libcxx-commits</a> 29 <a href="https://llvm.org/svn/llvm-project/libcxx/trunk/">Browse SVN</a> 30 <a href="https://llvm.org/viewvc/llvm-project/libcxx/trunk/">Browse ViewVC</a> 35 <!--*********************************************************************--> 37 <!--*********************************************************************--> 44 under the MIT license and the UIUC License (a BSD-like license).</p> [all …]
|
/external/libcxx/utils/libcxx/test/ |
D | format.py | 1 #===----------------------------------------------------------------------===## 8 #===----------------------------------------------------------------------===## 16 import lit.Test # pylint: disable=import-error 17 import lit.TestRunner # pylint: disable=import-error 19 # pylint: disable=import-error 21 from libcxx.test.executor import LocalExecutor as LocalExecutor 22 import libcxx.util 30 FOO.pass.cpp - Executable test which should compile, run, and exit with 32 FOO.fail.cpp - Negative test case which is expected to fail compilation. 33 FOO.sh.cpp - A test that uses LIT's ShTest format. [all …]
|
/external/google-fruit/extras/scripts/ |
D | travis_ci_install_osx.sh | 1 #!/bin/bash -x 3 set -e 6 if brew list -1 | grep -q "^$1\$"; then 12 time (brew install "$@" || brew link --overwrite gcc49) 31 gcc-4.9) install_brew_package gcc@4.9 ;; 32 gcc-5) install_brew_package gcc@5 ;; 33 gcc-6) install_brew_package gcc@6 ;; 34 clang-default) ;; 35 clang-3.7) install_brew_package llvm@3.7 --with-clang --with-libcxx;; 36 clang-3.8) install_brew_package llvm@3.8 --with-clang --with-libcxx;; [all …]
|
/external/libcxx/ |
D | lit.site.cfg | 21 top, "prebuilts/clang/linux-x86/host/3.6/bin/clang++") 23 config.libcxx_src_root = os.path.join(top, "external/libcxx") 24 config.libcxx_obj_root = os.path.join(top, "external/libcxx") 34 config.configuration_variant = "libcxx.ndk" 35 config.target_triple = "armv7a-linux-androideabi" 36 config.sysroot = os.path.join(ndk, "platforms/android-21/arch-arm/") 38 top, "prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.9") 42 config, os.path.join(top, "external/libcxx/test/lit.cfg"))
|
/external/libcxx/test/libcxx/ndk/test/ |
D | config.py | 3 import libcxx.test.config 4 import libcxx.android.test.format 7 class Configuration(libcxx.test.config.Configuration): 25 self.link_flags.append('-nodefaultlibs') 28 self.link_flags.append('-L' + self.cxx_library_root) 33 self.link_flags.append('-L' + libdir) 35 self.link_flags.append('-lc++_ndk') 36 self.link_flags.append('-lc_ndk') 37 self.link_flags.append('-lc') 44 self.compile_flags + ['-c', '-o', '%OUT%', '%SOURCE%']) [all …]
|
/external/libcxx/benchmarks/ |
D | CMakeLists.txt | 9 -Wno-unused-command-line-argument 10 -nostdinc++ 11 -isystem ${LIBCXX_SOURCE_DIR}/include 12 -L${LIBCXX_LIBRARY_DIR} 13 -Wl,-rpath,${LIBCXX_LIBRARY_DIR} 18 -L${LIBCXX_CXX_ABI_LIBRARY_PATH} 19 -Wl,-rpath,${LIBCXX_CXX_ABI_LIBRARY_PATH}) 22 list(APPEND BENCHMARK_LIBCXX_COMPILE_FLAGS -include "${LIBCXX_BINARY_DIR}/__config_site") 26 ExternalProject_Add(google-benchmark-libcxx 28 DEPENDS cxx cxx-headers [all …]
|
/external/libcxx/utils/libcxx/android/ |
D | executors.py | 3 import libcxx.test.executor 5 from libcxx.android import adb 6 from lit.util import executeCommand # pylint: disable=import-error 9 class AdbExecutor(libcxx.test.executor.RemoteExecutor): 18 dir_arg = '-d' if is_dir else '' 19 cmd = 'mktemp -q {} /data/local/tmp/libcxx/temp.XXXXXX'.format(dir_arg) 26 def _copy_in_file(self, src, dst): # pylint: disable=no-self-use 32 adb_cmd.extend(['-s', self.serial])
|
/external/swiftshader/third_party/llvm-7.0/llvm/docs/Proposals/ |
D | GitHubMove.rst | 15 infrastructure) will continue to work with a Git-based LLVM. 18 community's reaction and, if we collectively decide to move, the time-frame. Be 22 meeting (http://llvm.org/devmtg/2016-11/). 29 This proposal relates only to moving the hosting of our source-code repository 31 using GitHub's issue tracker, pull-requests, or code-review. 35 username/password-hash. 41 ---------------- 57 -------- 66 through the Git-SVN integration. 82 ----------- [all …]
|
12345678