Searched +full:x86_64 +full:- +full:unknown +full:- +full:linux +full:- +full:gnu (Results 1 – 25 of 1070) sorted by relevance
12345678910>>...43
/external/llvm-project/clang/test/Driver/ |
D | cross-linux.c | 1 // RUN: %clang -### -o %t %s 2>&1 -no-integrated-as -fuse-ld=ld \ 2 // RUN: --gcc-toolchain=%S/Inputs/basic_cross_linux_tree/usr \ 3 // RUN: --target=i386-unknown-linux-gnu \ 4 // RUN: | FileCheck --check-prefix=CHECK-I386 %s 5 // CHECK-I386: "-cc1" "-triple" "i386-unknown-linux-gnu" 6 … CHECK-I386: "{{.*}}/Inputs/basic_cross_linux_tree/usr/lib/gcc/i386-unknown-linux-gnu/4.6.0/../../… 7 …ECK-I386: "{{.*}}/Inputs/basic_cross_linux_tree/usr/lib/gcc/i386-unknown-linux-gnu/4.6.0/../../../… 9 // RUN: %clang -### -o %t %s 2>&1 -no-integrated-as -fuse-ld=ld \ 10 // RUN: --gcc-toolchain=%S/Inputs/basic_cross_linux_tree/usr \ 11 // RUN: --target=x86_64-unknown-linux-gnu \ [all …]
|
D | openmp-offload.c | 5 // REQUIRES: clang-driver 6 // REQUIRES: x86-registered-target 7 // REQUIRES: powerpc-registered-target 8 // REQUIRES: nvptx-registered-target 13 // RUN: %clang -### -fopenmp=libomp -fopenmp-targets=aaa-bbb-ccc-ddd %s 2>&1 \ 14 // RUN: | FileCheck -check-prefix=CHK-INVALID-TARGET %s 15 // CHK-INVALID-TARGET: error: OpenMP target is invalid: 'aaa-bbb-ccc-ddd' 19 /// Check warning for empty -fopenmp-targets 20 // RUN: %clang -### -fopenmp=libomp -fopenmp-targets= %s 2>&1 \ 21 // RUN: | FileCheck -check-prefix=CHK-EMPTY-OMPTARGETS %s [all …]
|
D | lto.c | 1 // -flto causes a switch to llvm-bc object files. 2 // RUN: %clang -ccc-print-phases -c %s -flto 2> %t 3 // RUN: FileCheck -check-prefix=CHECK-COMPILE-ACTIONS < %t %s 5 // CHECK-COMPILE-ACTIONS: 2: compiler, {1}, ir 6 // CHECK-COMPILE-ACTIONS: 3: backend, {2}, lto-bc 8 // RUN: %clang -ccc-print-phases %s -flto 2> %t 9 // RUN: FileCheck -check-prefix=CHECK-COMPILELINK-ACTIONS < %t %s 11 // CHECK-COMPILELINK-ACTIONS: 0: input, "{{.*}}lto.c", c 12 // CHECK-COMPILELINK-ACTIONS: 1: preprocessor, {0}, cpp-output 13 // CHECK-COMPILELINK-ACTIONS: 2: compiler, {1}, ir [all …]
|
D | hip-save-temps.hip | 1 // REQUIRES: clang-driver 2 // REQUIRES: x86-registered-target 3 // REQUIRES: amdgpu-registered-target 5 // -fno-gpu-rdc without -o with -c 6 // RUN: %clang -### -target x86_64-linux-gnu -nogpulib -save-temps \ 7 // RUN: --cuda-gpu-arch=gfx900 -c %s 2>&1 | \ 8 // RUN: FileCheck -check-prefixes=CHECK,NORDC %s 10 // -fno-gpu-rdc without -o 11 // RUN: %clang -### -target x86_64-linux-gnu -nogpulib -save-temps \ 12 // RUN: --cuda-gpu-arch=gfx900 %s 2>&1 | \ [all …]
|
D | linux-ld.c | 1 // General tests that ld invocations on Linux targets sane. Note that we use 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=i386-unknown-linux -rtlib=platform \ 6 // RUN: --gcc-toolchain="" \ 7 // RUN: --sysroot=%S/Inputs/basic_linux_tree \ 8 // RUN: | FileCheck --check-prefix=CHECK-LD-32 %s 9 // CHECK-LD-32-NOT: warning: 10 // CHECK-LD-32: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]" 11 // CHECK-LD-32: "{{.*}}/usr/lib/gcc/i386-unknown-linux/4.6.0{{/|\\\\}}crtbegin.o" 12 // CHECK-LD-32: "-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0" [all …]
|
D | hip-fpie-option.hip | 1 // REQUIRES: clang-driver, amdgpu-registered-target 3 // -fPIC and -fPIE only affects host relocation model. 6 // RUN: %clang -### -target x86_64-unknown-linux-gnu \ 7 // RUN: --offload-arch=gfx906 %s -nogpulib -nogpuinc \ 8 // RUN: 2>&1 | FileCheck -check-prefixes=DEV,HOST-STATIC %s 10 // RUN: %clang -### -target x86_64-unknown-linux-gnu \ 11 // RUN: -fgpu-rdc --offload-arch=gfx906 %s -nogpulib -nogpuinc \ 12 // RUN: 2>&1 | FileCheck -check-prefixes=DEV,HOST-STATIC %s 14 // RUN: %clang -### -target x86_64-unknown-linux-gnu \ 15 // RUN: --offload-arch=gfx906 %s -nogpulib -nogpuinc \ [all …]
|
D | linux-header-search.cpp | 4 // Test a simulated installation of libc++ on Linux, both through sysroot and 6 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \ 7 // RUN: -target x86_64-unknown-linux-gnu \ 8 // RUN: -stdlib=libc++ \ 9 // RUN: -ccc-install-dir %S/Inputs/basic_linux_tree/usr/bin \ 10 // RUN: -resource-dir=%S/Inputs/resource_dir \ 11 // RUN: --sysroot=%S/Inputs/basic_linux_libcxx_tree \ 12 // RUN: --gcc-toolchain="" \ 13 // RUN: | FileCheck --check-prefix=CHECK-BASIC-LIBCXX-SYSROOT %s 14 // CHECK-BASIC-LIBCXX-SYSROOT: "{{[^"]*}}clang{{[^"]*}}" "-cc1" [all …]
|
D | hip-rdc-device-only.hip | 1 // REQUIRES: clang-driver 2 // REQUIRES: x86-registered-target 3 // REQUIRES: amdgpu-registered-target 5 // RUN: %clang -### -target x86_64-linux-gnu \ 6 // RUN: -x hip --cuda-gpu-arch=gfx803 --cuda-gpu-arch=gfx900 \ 7 // RUN: -c -nogpuinc -nogpulib --cuda-device-only -fgpu-rdc \ 10 // RUN: 2>&1 | FileCheck -check-prefixes=COMMON,EMITBC %s 12 // With `-emit-llvm`, the output should be the same as the aforementioned line 13 // as `-fgpu-rdc` in HIP implies `-emit-llvm`. 15 // RUN: %clang -### -target x86_64-linux-gnu \ [all …]
|
/external/clang/test/Driver/ |
D | cross-linux.c | 1 // RUN: %clang -### -o %t %s 2>&1 -no-integrated-as \ 2 // RUN: --gcc-toolchain=%S/Inputs/basic_cross_linux_tree/usr \ 3 // RUN: --target=i386-unknown-linux-gnu \ 4 // RUN: | FileCheck --check-prefix=CHECK-I386 %s 5 // CHECK-I386: "-cc1" "-triple" "i386-unknown-linux-gnu" 6 … CHECK-I386: "{{.*}}/Inputs/basic_cross_linux_tree/usr/lib/gcc/i386-unknown-linux-gnu/4.6.0/../../… 7 …ECK-I386: "{{.*}}/Inputs/basic_cross_linux_tree/usr/lib/gcc/i386-unknown-linux-gnu/4.6.0/../../../… 9 // RUN: %clang -### -o %t %s 2>&1 -no-integrated-as \ 10 // RUN: --gcc-toolchain=%S/Inputs/basic_cross_linux_tree/usr \ 11 // RUN: --target=x86_64-unknown-linux-gnu \ [all …]
|
D | linux-ld.c | 1 // General tests that ld invocations on Linux targets sane. Note that we use 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=i386-unknown-linux \ 6 // RUN: --gcc-toolchain="" \ 7 // RUN: --sysroot=%S/Inputs/basic_linux_tree \ 8 // RUN: | FileCheck --check-prefix=CHECK-LD-32 %s 9 // CHECK-LD-32-NOT: warning: 10 // CHECK-LD-32: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]" 11 // CHECK-LD-32: "{{.*}}/usr/lib/gcc/i386-unknown-linux/4.6.0{{/|\\\\}}crtbegin.o" 12 // CHECK-LD-32: "-L[[SYSROOT]]/usr/lib/gcc/i386-unknown-linux/4.6.0" [all …]
|
D | linux-header-search.cpp | 4 // Test a simulated installation of libc++ on Linux, both through sysroot and 6 // RUN: %clang -no-canonical-prefixes %s -### -fsyntax-only 2>&1 \ 7 // RUN: -target x86_64-unknown-linux-gnu \ 8 // RUN: -stdlib=libc++ \ 9 // RUN: -ccc-install-dir %S/Inputs/basic_linux_tree/usr/bin \ 10 // RUN: --sysroot=%S/Inputs/basic_linux_libcxx_tree \ 11 // RUN: --gcc-toolchain="" \ 12 // RUN: | FileCheck --check-prefix=CHECK-BASIC-LIBCXX-SYSROOT %s 13 // CHECK-BASIC-LIBCXX-SYSROOT: "{{[^"]*}}clang{{[^"]*}}" "-cc1" 14 // CHECK-BASIC-LIBCXX-SYSROOT: "-isysroot" "[[SYSROOT:[^"]+]]" [all …]
|
/external/llvm-project/openmp/libomptarget/test/mapping/ |
D | target_update_array_extension.c | 1 // -------------------------------------------------- 3 // -------------------------------------------------- 5 // RUN: %libomptarget-compile-aarch64-unknown-linux-gnu \ 6 // RUN: -DCLAUSE=to -DEXTENDS=BEFORE 7 // RUN: %libomptarget-run-aarch64-unknown-linux-gnu 2>&1 \ 8 // RUN: | %fcheck-aarch64-unknown-linux-gnu 10 // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu \ 11 // RUN: -DCLAUSE=to -DEXTENDS=BEFORE 12 // RUN: %libomptarget-run-powerpc64-ibm-linux-gnu 2>&1 \ 13 // RUN: | %fcheck-powerpc64-ibm-linux-gnu [all …]
|
/external/libabigail/tests/data/test-read-dwarf/ |
D | test22-pr19097-libstdc++.so.6.0.17.so.abi | 1 <abi-corpus version='2.0' path='data/test-read-dwarf/test22-pr19097-libstdc++.so.6.0.17.so' soname=… 2 <elf-needed> 5 <dependency name='ld-linux-x86-64.so.2'/> 7 </elf-needed> 8 <elf-function-symbols> 9 …-symbol name='_ZN10__cxxabiv116__enum_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes'… 10 …-symbol name='_ZN10__cxxabiv116__enum_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes'… 11 …-symbol name='_ZN10__cxxabiv116__enum_type_infoD2Ev' version='CXXABI_1.3' is-default-version='yes'… 12 …-symbol name='_ZN10__cxxabiv117__array_type_infoD0Ev' version='CXXABI_1.3' is-default-version='yes… 13 …-symbol name='_ZN10__cxxabiv117__array_type_infoD1Ev' version='CXXABI_1.3' is-default-version='yes… [all …]
|
/external/llvm-project/openmp/libomptarget/test/mapping/present/ |
D | target_update_array_extension.c | 1 // -------------------------------------------------- 3 // -------------------------------------------------- 5 // RUN: %libomptarget-compile-aarch64-unknown-linux-gnu \ 6 // RUN: -fopenmp-version=51 -DCLAUSE=to -DEXTENDS=BEFORE 7 // RUN: %libomptarget-run-fail-aarch64-unknown-linux-gnu 2>&1 \ 8 // RUN: | %fcheck-aarch64-unknown-linux-gnu 10 // RUN: %libomptarget-compile-powerpc64-ibm-linux-gnu \ 11 // RUN: -fopenmp-version=51 -DCLAUSE=to -DEXTENDS=BEFORE 12 // RUN: %libomptarget-run-fail-powerpc64-ibm-linux-gnu 2>&1 \ 13 // RUN: | %fcheck-powerpc64-ibm-linux-gnu [all …]
|
/external/rust/crates/nix/ |
D | README.md | 3 [![Cirrus Build Status](https://api.cirrus-ci.com/github/nix-rust/nix.svg)](https://cirrus-ci.com/g… 8 Nix seeks to provide friendly bindings to various *nix platform APIs (Linux, Darwin, 13 exposed by the [libc crate](https://github.com/rust-lang/libc). This is done by 20 [gethostname](http://man7.org/linux/man-pages/man2/gethostname.2.html) system 25 pub unsafe extern fn gethostname(name: *mut c_char, len: size_t) -> c_int; 28 pub fn gethostname<'a>(buffer: &'a mut [u8]) -> Result<&'a CStr>; 34 platforms supported by [libc](https://github.com/rust-lang/libc), only some 38 * Tier 1 - Builds and tests for this target are run in CI. Failures of either 40 * Tier 2 - Builds for this target are run in CI. Failures during the build 43 * Tier 3 - Builds for this target are run in CI. Failures during the build [all …]
|
/external/llvm-project/openmp/libomptarget/test/env/ |
D | omp_target_debug.c | 1 …-compile-aarch64-unknown-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-aarch64-unknown-l… 2 …-compile-aarch64-unknown-linux-gnu && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-aarch64-unknown-l… 3 …-compile-powerpc64-ibm-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-powerpc64-ibm-linux… 4 …-compile-powerpc64-ibm-linux-gnu && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-powerpc64-ibm-linux… 5 …-compile-powerpc64le-ibm-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-powerpc64le-ibm-l… 6 …-compile-powerpc64le-ibm-linux-gnu && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-powerpc64le-ibm-l… 7 …t-compile-x86_64-pc-linux-gnu && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-x86_64-pc-linux-gnu 2>… 8 …t-compile-x86_64-pc-linux-gnu && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-x86_64-pc-linux-gnu 2>… 9 …t-compile-nvptx64-nvidia-cuda && env LIBOMPTARGET_DEBUG=1 %libomptarget-run-nvptx64-nvidia-cuda 2>… 10 …t-compile-nvptx64-nvidia-cuda && env LIBOMPTARGET_DEBUG=0 %libomptarget-run-nvptx64-nvidia-cuda 2>… [all …]
|
/external/toolchain-utils/compiler_wrapper/testdata/cros_nonhardened_golden/ |
D | clang_path.json | 6 "path": "./x86_64-cros-linux-gnu-clang", 18 "--sysroot=/usr/x86_64-cros-linux-gnu", 19 "-Qunused-arguments", 20 "-Wno-tautological-constant-compare", 21 "-Wno-tautological-unsigned-enum-zero-compare", 22 "-Wno-unknown-warning-option", 23 "-Wno-section", 24 "-static-libgcc", 25 "-Wno-final-dtor-non-final-class", 26 "-Werror=poison-system-directories", [all …]
|
D | clang_sanitizer_args.json | 6 "path": "./x86_64-cros-linux-gnu-clang", 8 "-fsanitize=kernel-address", 9 "-Wl,--no-undefined", 20 "--sysroot=/usr/x86_64-cros-linux-gnu", 21 "-Qunused-arguments", 22 "-Wno-tautological-constant-compare", 23 "-Wno-tautological-unsigned-enum-zero-compare", 24 "-Wno-unknown-warning-option", 25 "-Wno-section", 26 "-static-libgcc", [all …]
|
/external/rust/crates/libz-sys/.github/workflows/ |
D | ci.yml | 10 install-cross: 11 runs-on: ubuntu-latest 13 - uses: XAMPPRocky/get-github-release@v1 16 owner: rust-embedded 20 - uses: actions/upload-artifact@v2 22 name: cross-${{ matrix.platform }} 26 platform: [linux-musl] 29 runs-on: windows-latest 32 # one of the install-cross jobs has started, so this makes sure all 34 needs: install-cross [all …]
|
/external/toolchain-utils/compiler_wrapper/testdata/cros_hardened_noccache_golden/ |
D | clang_path.json | 6 "path": "./x86_64-cros-linux-gnu-clang", 17 "--sysroot=/usr/x86_64-cros-linux-gnu", 18 "-Qunused-arguments", 19 "-fno-addrsig", 20 "-fcommon", 21 "-Wno-tautological-constant-compare", 22 "-Wno-tautological-unsigned-enum-zero-compare", 23 "-Wno-unknown-warning-option", 24 "-Wno-section", 25 "-static-libgcc", [all …]
|
/external/llvm-project/clang/test/CodeGen/ |
D | lto-newpm-pipeline.c | 1 // REQUIRES: x86-registered-target 3 …N: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -o /dev/null -fexperimental-new-pass-… 4 // RUN: -check-prefix=CHECK-FULL-O0 5 …N: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -o /dev/null -fexperimental-new-pass-… 6 // RUN: -check-prefix=CHECK-THIN-O0 7 …N: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -o /dev/null -fexperimental-new-pass-… 8 // RUN: -check-prefix=CHECK-FULL-OPTIMIZED 9 …N: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -o /dev/null -fexperimental-new-pass-… 10 // RUN: -check-prefix=CHECK-THIN-OPTIMIZED 11 …N: %clang_cc1 -triple x86_64-unknown-linux-gnu -emit-llvm-bc -o /dev/null -fexperimental-new-pass-… [all …]
|
/external/llvm-project/clang/test/InterfaceStubs/ |
D | inline.c | 1 // REQUIRES: x86-registered-target 2 // RUN: %clang_cc1 -DINLINE=inline -triple x86_64-unknown-linux-gnu -o - \ 3 // RUN: -emit-interface-stubs -std=gnu89 -xc %s | \ 4 // RUN: FileCheck -check-prefix=CHECK-GNU %s 5 // RUN: %clang -DINLINE=inline -target x86_64-linux-gnu -O0 -o - -c \ 6 // RUN: -std=gnu89 -xc %s | llvm-nm - | FileCheck -check-prefix=CHECK-GNU %s 8 // RUN: %clang_cc1 -DINLINE="__attribute__((always_inline))" \ 9 // RUN: -triple x86_64-unknown-linux-gnu -o - -emit-interface-stubs -xc %s | \ 10 // RUN: FileCheck -check-prefix=CHECK-GNU %s 11 // RUN: %clang -DINLINE="__attribute__((always_inline))" \ [all …]
|
/external/toolchain-utils/compiler_wrapper/testdata/cros_hardened_golden/ |
D | clang_path.json | 6 "path": "./x86_64-cros-linux-gnu-clang", 18 "--sysroot=/usr/x86_64-cros-linux-gnu", 19 "-Qunused-arguments", 20 "-fno-addrsig", 21 "-fcommon", 22 "-Wno-tautological-constant-compare", 23 "-Wno-tautological-unsigned-enum-zero-compare", 24 "-Wno-unknown-warning-option", 25 "-Wno-section", 26 "-static-libgcc", [all …]
|
/external/toolchain-utils/compiler_wrapper/testdata/cros_hardened_llvmnext_golden/ |
D | clang_path.json | 6 "path": "./x86_64-cros-linux-gnu-clang", 18 "--sysroot=/usr/x86_64-cros-linux-gnu", 19 "-Qunused-arguments", 20 "-fno-addrsig", 21 "-fcommon", 22 "-Wno-tautological-constant-compare", 23 "-Wno-tautological-unsigned-enum-zero-compare", 24 "-Wno-unknown-warning-option", 25 "-Wno-section", 26 "-static-libgcc", [all …]
|
/external/rust/crates/num_cpus/ |
D | .travis.yml | 11 - if [ -z "$NO_ADD" ]; then rustup target add "$TARGET"; fi 14 - cargo build --verbose --target "$TARGET" 16 - if [ "$RUN" == "1" ]; then cargo test --verbose --target "$TARGET"; fi 21 # See https://docs.travis-ci.com/user/reference/overview/ 22 - NUM_CPUS_TEST_GET=2 26 # Linux 28 - name: Minimum Supported Rust Version 29 env: TARGET=x86_64-unknown-linux-gnu RUN=1 NO_ADD=1 31 # 32-bit requires multilib. 32 - env: TARGET=i686-unknown-linux-gnu RUN=1 [all …]
|
12345678910>>...43