Searched +full:linux +full:- +full:mips (Results 1 – 25 of 825) sorted by relevance
12345678910>>...33
/external/clang/test/Driver/ |
D | mips-abi.c | 1 // Check passing Mips ABI options to the backend. 3 // RUN: %clang -target mips-linux-gnu -### -c %s 2>&1 \ 4 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 5 // RUN: %clang -target mips64-linux-gnu -mips32r2 -mabi=32 -### -c %s 2>&1 \ 6 // RUN: | FileCheck -check-prefix=MIPS32R2-O32 %s 7 // MIPS32R2-O32: "-target-cpu" "mips32r2" 8 // MIPS32R2-O32: "-target-abi" "o32" 12 // RUN: not %clang -target mips-linux-gnu -c %s \ 13 // RUN: -march=mips64r2 -mabi=32 2>&1 \ 14 // RUN: | FileCheck -check-prefix=MIPS64R2-O32 %s [all …]
|
D | mips-cs.cpp | 1 // Check frontend and linker invocations on Mentor Graphics MIPS toolchain. 3 // = Big-endian, hard float 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-linux-gnu \ 6 // RUN: -stdlib=libstdc++ --gcc-toolchain=%S/Inputs/mips_cs_tree \ 7 // RUN: | FileCheck --check-prefix=CHECK-BE-HF-32 %s 8 // CHECK-BE-HF-32: "-internal-isystem" 9 // CHECK-BE-HF-32: "[[TC:[^"]+/lib/gcc/mips-linux-gnu/4.6.3]]/../../../../mips-linux-gnu/include/c+… 10 // CHECK-BE-HF-32: "-internal-isystem" 11 // CHECK-BE-HF-32: "[[TC]]/../../../../mips-linux-gnu/include/c++/4.6.3/mips-linux-gnu" [all …]
|
D | mips-as.c | 1 // Check passing options to the assembler for MIPS targets. 3 // RUN: %clang -target mips-linux-gnu -### \ 4 // RUN: -no-integrated-as -c %s 2>&1 \ 5 // RUN: | FileCheck -check-prefix=MIPS32R2-EB-AS %s 6 // RUN: %clang -target mipsel-linux-gnu -### \ 7 // RUN: -no-integrated-as -c -EB %s 2>&1 \ 8 // RUN: | FileCheck -check-prefix=MIPS32R2-EB-AS %s 9 // MIPS32R2-EB-AS: as{{(.exe)?}}" "-march" "mips32r2" "-mabi" "32" "-mno-shared" "-call_nonpic" "-E… 10 // MIPS32R2-EB-AS-NOT: "{{[ A-Za-z\\\/]*}}as{{(.exe)?}}{{.*}}"-KPIC" 12 // RUN: %clang -target mips-linux-gnu -### \ [all …]
|
D | mips-img-v2.cpp | 1 // Check frontend and linker invocations on the IMG v2 MIPS toolchain. 3 // -EB -mips32r6 -mhard-float -mabi=32 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-img-linux-gnu \ 6 // RUN: --gcc-toolchain=%S/Inputs/mips_img_v2_tree \ 7 // RUN: -stdlib=libstdc++ \ 8 // RUN: -EB -mips32r6 -mhard-float -mabi=32 \ 9 // RUN: | FileCheck --check-prefix=EB-HARD-O32 %s 10 // EB-HARD-O32: "-internal-isystem" 11 // EB-HARD-O32: "[[TC:[^"]+/lib/gcc/mips-img-linux-gnu/4.9.2]]/../../../../mips-img-linux-gnu/inclu… [all …]
|
D | mips-integrated-as.s | 1 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s 2>&1 | \ 2 // RUN: FileCheck -check-prefix=ABI-O32 %s 3 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=32 2>&1 | \ 4 // RUN: FileCheck -check-prefix=ABI-O32 %s 5 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=o32 2>&1 | \ 6 // RUN: FileCheck -check-prefix=ABI-O32 %s 7 // ABI-O32: -cc1as 8 // ABI-O32: "-target-abi" "o32" 10 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -mabi=eabi 2>&1 | \ 11 // RUN: FileCheck -check-prefix=ABI-EABI32 %s [all …]
|
D | mips-mti.cpp | 1 // Check frontend and linker invocations on the MTI MIPS toolchain. 3 // -EB -mhard-float -mabi=32 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-mti-linux-gnu \ 6 // RUN: --gcc-toolchain=%S/Inputs/mips_mti_tree \ 7 // RUN: -stdlib=libstdc++ \ 8 // RUN: -EB -mhard-float -mabi=32 \ 9 // RUN: | FileCheck --check-prefix=EB-HARD-O32 %s 10 // EB-HARD-O32: "-internal-isystem" 11 // EB-HARD-O32: "[[TC:[^"]+/lib/gcc/mips-mti-linux-gnu/4.9.2]]/../../../../mips-mti-linux-gnu/inclu… [all …]
|
D | mips-features.c | 1 // Check handling MIPS specific features options. 3 // -mabicalls 4 // RUN: %clang -target mips-linux-gnu -### -c %s -mno-abicalls -mabicalls 2>&1 \ 5 // RUN: | FileCheck --check-prefix=CHECK-MABICALLS %s 6 // CHECK-MABICALLS: "-target-feature" "-noabicalls" 8 // -mno-abicalls 9 // RUN: %clang -target mips-linux-gnu -### -c %s -mabicalls -mno-abicalls 2>&1 \ 10 // RUN: | FileCheck --check-prefix=CHECK-MNOABICALLS %s 11 // CHECK-MNOABICALLS: "-target-feature" "+noabicalls" 13 // -mips16 [all …]
|
D | mips-reduced-toolchain.cpp | 1 // Check frontend and linker invocations on reduced Debian MIPS toolchain. 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-linux-gnu \ 6 // RUN: --sysroot=%S/Inputs/debian_reduced_mips_tree \ 7 // RUN: --gcc-toolchain="" \ 8 // RUN: | FileCheck --check-prefix=CHECK-DEBIAN-MIPS %s 9 // CHECK-DEBIAN-MIPS: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]" 10 // CHECK-DEBIAN-MIPS: "{{.*}}/usr/lib/gcc/mips-linux-gnu/4.7{{/|\\\\}}crtbegin.o" 11 // CHECK-DEBIAN-MIPS: "-L[[SYSROOT]]/usr/lib/gcc/mips-linux-gnu/4.7" 12 // CHECK-DEBIAN-MIPS: "-L[[SYSROOT]]/usr/lib/gcc/mips-linux-gnu/4.7/../../../mips-linux-gnu" [all …]
|
D | mips-fsf.cpp | 1 // Check frontend and linker invocations on FSF MIPS toolchain. 3 // = Big-endian, mips32, hard float 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-mti-linux-gnu -mips32 -mhard-float \ 6 // RUN: -stdlib=libstdc++ --gcc-toolchain=%S/Inputs/mips_fsf_tree \ 7 // RUN: | FileCheck --check-prefix=CHECK-BE-HF-32 %s 8 // CHECK-BE-HF-32: "-internal-isystem" 9 // CHECK-BE-HF-32: "[[TC:[^"]+/lib/gcc/mips-mti-linux-gnu/4.9.0]]/../../../../mips-mti-linux-gnu/in… 10 // CHECK-BE-HF-32: "-internal-isystem" 11 // CHECK-BE-HF-32: "[[TC]]/../../../../mips-mti-linux-gnu/include/c++/4.9.0/mips-mti-linux-gnu/mips… [all …]
|
D | mips-ias-Wa.s | 1 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s 2>&1 | \ 2 // RUN: FileCheck -check-prefix=TRAP-DEFAULT %s 3 // TRAP-DEFAULT: -cc1as 4 // TRAP-DEFAULT-NOT: "-target-feature" "-use-tcc-in-div" 6 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -Wa,--trap 2>&1 | \ 7 // RUN: FileCheck -check-prefix=TRAP-ON %s 8 // TRAP-ON: -cc1as 9 // TRAP-ON: "-target-feature" "+use-tcc-in-div" 11 // RUN: %clang -target mips-linux-gnu -### -fintegrated-as -c %s -Wa,--break 2>&1 | \ 12 // RUN: FileCheck -check-prefix=TRAP-OFF %s [all …]
|
D | mips-img.cpp | 1 // Check frontend and linker invocations on the IMG MIPS toolchain. 3 // = Big-endian, mips32r6 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: --target=mips-img-linux-gnu -mips32r6 \ 6 // RUN: -stdlib=libstdc++ --gcc-toolchain=%S/Inputs/mips_img_tree \ 7 // RUN: | FileCheck --check-prefix=CHECK-BE-32R6 %s 8 // CHECK-BE-32R6: "-internal-isystem" 9 // CHECK-BE-32R6: "[[TC:[^"]+/lib/gcc/mips-img-linux-gnu/4.9.0]]/../../../../mips-img-linux-gnu/inc… 10 // CHECK-BE-32R6: "-internal-isystem" 11 // CHECK-BE-32R6: "[[TC]]/../../../../mips-img-linux-gnu/include/c++/4.9.0/mips-img-linux-gnu" [all …]
|
D | mips-float.c | 1 // Check handling -mhard-float / -msoft-float / -mfloat-abi options 2 // when build for MIPS platforms. 5 // RUN: %clang -c %s -### -o %t.o 2>&1 \ 6 // RUN: -target mips-linux-gnu \ 7 // RUN: | FileCheck --check-prefix=CHECK-DEF %s 8 // CHECK-DEF: "-mfloat-abi" "hard" 10 // -mhard-float 11 // RUN: %clang -c %s -### -o %t.o 2>&1 \ 12 // RUN: -target mips-linux-gnu -mhard-float \ 13 // RUN: | FileCheck --check-prefix=CHECK-HARD %s [all …]
|
D | android-standalone.cpp | 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: -target arm-linux-androideabi -stdlib=libstdc++ \ 6 // RUN: -B%S/Inputs/basic_android_tree \ 7 // RUN: --sysroot=%S/Inputs/basic_android_tree/sysroot \ 9 // CHECK: {{.*}}clang{{.*}}" "-cc1" 10 // CHECK: "-internal-isystem" "{{.*}}/arm-linux-androideabi/include/c++/4.4.3" 11 // CHECK: "-internal-isystem" "{{.*}}/arm-linux-androideabi/include/c++/4.4.3/arm-linux-androideabi" 12 // CHECK: "-internal-externc-isystem" "{{.*}}/sysroot/include" 13 // CHECK: "-internal-externc-isystem" "{{.*}}/sysroot/usr/include" 14 // CHECK: "{{.*}}ld{{(.exe)?}}" "--sysroot=[[SYSROOT:[^"]+]]" [all …]
|
D | mips-mti-linux.c | 1 // Check frontend and linker invocations on GPL-free MIPS toolchain. 3 // FIXME: Using --sysroot with this toolchain/triple isn't supported. We use 5 // Ideally, we'd like to have an --llvm-toolchain option similar to 6 // the --gcc-toolchain one. 7 // REQUIRES: mips-registered-target 9 // = Big-endian, mips32r2, hard float 10 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 11 // RUN: --target=mips-mti-linux -mips32r2 -mhard-float \ 12 // RUN: --sysroot=%S/Inputs/mips_mti_linux/sysroot \ 13 // RUN: | FileCheck --check-prefix=CHECK-BE-HF-32R2 %s [all …]
|
D | android-ndk-standalone.cpp | 4 // RUN: %clang -no-canonical-prefixes %s -### -o %t.o 2>&1 \ 5 // RUN: -target arm-linux-androideabi -stdlib=libstdc++ \ 6 // RUN: -B%S/Inputs/basic_android_ndk_tree \ 7 // RUN: --sysroot=%S/Inputs/basic_android_ndk_tree/sysroot \ 9 // CHECK: {{.*}}clang{{.*}}" "-cc1" 10 // CHECK: "-resource-dir" "[[RESOURCE_DIR:[^"]+]]" 11 // CHECK: "-internal-isystem" "{{.*}}/include/c++/4.9" 12 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/armv7-a/thumb" 13 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/armv7-a" 14 // CHECK-NOT: "-internal-isystem" "{{.*}}/include/c++/4.9/arm-linux-androideabi/thumb" [all …]
|
/external/freetype/docs/ |
D | INSTALL.CROSS | 1 This document contains instructions on how to cross-build the FreeType 2 library on Unix systems, for example, building binaries for Linux/MIPS 4 file `INSTALL.UNIX' for required tools and the basic self-building 9 ----------------- 11 For self-building the FreeType library on a Unix system, GNU Make 15 The GNU C compiler to cross-build the target system is required. 16 Currently, using a non-GNU cross compiler is untested. The cross 19 system is Linux/MIPS, the cross compiler should be installed with 20 the name `mips-ip22-linuxelf-gcc'. 22 A C compiler for a self-build is required also, to build a tool [all …]
|
/external/strace/ |
D | Makefile.am | 3 # Copyright (c) 2002-2009 Roland McGrath <roland@redhat.com> 4 # Copyright (c) 2006-2016 Dmitry V. Levin <ldv@altlinux.org> 5 # Copyright (c) 2008-2015 Mike Frysinger <vapier@gentoo.org> 7 # Copyright (c) 2002-2018 The strace developers. 33 TESTS_M32 = tests-m32 36 TESTS_MX32 = tests-mx32 41 man_MANS = strace.1 strace-log-merge.1 42 bin_SCRIPTS = strace-graph strace-log-merge 44 OS = linux 50 ACLOCAL_AMFLAGS = -I m4 [all …]
|
/external/python/cpython2/Modules/_ctypes/ |
D | libffi.diff | 1 diff -urN libffi-3.1/configure libffi/configure 2 --- libffi-3.1/configure 2014-05-19 15:44:03.000000000 +0200 3 +++ libffi/configure 2014-08-09 21:51:07.877871443 +0200 4 @@ -17236,6 +17236,10 @@ 8 + i*86-*-nto-qnx*) 12 x86_64-*-darwin*) 15 @@ -17298,12 +17302,12 @@ 18 mips-sgi-irix5.* | mips-sgi-irix6.* | mips*-*-rtems*) 19 - TARGET=MIPS; TARGETDIR=mips 20 + TARGET=MIPS_IRIX; TARGETDIR=mips [all …]
|
/external/python/cpython3/Modules/_ctypes/ |
D | libffi.diff | 1 diff -urN libffi-3.1/configure libffi/configure 2 --- libffi-3.1/configure 2014-05-19 15:44:03.000000000 +0200 3 +++ libffi/configure 2014-08-09 21:51:07.877871443 +0200 4 @@ -17236,6 +17236,10 @@ 8 + i*86-*-nto-qnx*) 12 x86_64-*-darwin*) 15 @@ -17298,12 +17302,12 @@ 18 mips-sgi-irix5.* | mips-sgi-irix6.* | mips*-*-rtems*) 19 - TARGET=MIPS; TARGETDIR=mips 20 + TARGET=MIPS_IRIX; TARGETDIR=mips [all …]
|
/external/valgrind/ |
D | README.mips | 3 ------------------- 4 - MIPS32 and MIPS64 platforms are currently supported. 5 - Both little-endian and big-endian cores are supported. 6 - MIPS DSP ASE on MIPS32 platforms is supported. 9 Building V for MIPS 10 ------------------- 11 - Native build is available for all supported platforms. The build system 15 CFLAGS="-mips32r2", CFLAGS="-mips32" or CFLAGS="-mips64" or 16 CFLAGS="-mips64 -mabi=64" will do the trick and compile Valgrind correctly. 18 - Use of cross-toolchain is supported as well. [all …]
|
/external/python/cpython3/Modules/_ctypes/libffi/ |
D | README | 4 libffi-3.1 was released on May 19, 2014. Check the libffi web page 21 told at run-time about the number and types of arguments used to call 51 |-----------------+------------------+-------------------------| 53 |-----------------+------------------+-------------------------| 55 | AArch64 | Linux | GCC | 56 | Alpha | Linux | GCC | 58 | ARC | Linux | GCC | 59 | ARM | Linux | GCC | 61 | AVR32 | Linux | GCC | 64 | IA-64 | Linux | GCC | [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | README | 4 libffi-3.1 was released on May 19, 2014. Check the libffi web page 21 told at run-time about the number and types of arguments used to call 51 |-----------------+------------------+-------------------------| 53 |-----------------+------------------+-------------------------| 55 | AArch64 | Linux | GCC | 56 | Alpha | Linux | GCC | 58 | ARC | Linux | GCC | 59 | ARM | Linux | GCC | 61 | AVR32 | Linux | GCC | 64 | IA-64 | Linux | GCC | [all …]
|
/external/libffi/ |
D | README | 4 libffi-3.2.1 was released on November 12, 2014. Check the libffi web 21 told at run-time about the number and types of arguments used to call 51 |-----------------+------------------+-------------------------| 53 |-----------------+------------------+-------------------------| 55 | AArch64 | Linux | GCC | 56 | Alpha | Linux | GCC | 58 | ARC | Linux | GCC | 59 | ARM | Linux | GCC | 61 | AVR32 | Linux | GCC | 64 | IA-64 | Linux | GCC | [all …]
|
/external/libunwind/ |
D | Android.bp | 8 // http://www.apache.org/licenses/LICENSE-2.0 27 "-Wno-old-style-cast", 31 "-Werror", 32 "-Wno-#pragma-messages", 33 "-Wno-unused-parameter", 35 "-DHAVE_CONFIG_H", 36 "-D_GNU_SOURCE", 37 "-DNDEBUG", 41 // include/tdep-<arch>/libunwind_i.h, but soong prepends arch-specific 49 "include/tdep-arm", [all …]
|
/external/valgrind/docs/html/ |
D | dist.readme-mips.html | 3 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> 4 <title>11.�README.mips</title> 9 <link rel="prev" href="dist.readme-android_emulator.html" title="10.�README.android_emulator"> 10 <link rel="next" href="dist.readme-solaris.html" title="12.�README.solaris"> 14 <td width="22px" align="center" valign="middle"><a accesskey="p" href="dist.readme-android_emulator… 18 <td width="22px" align="center" valign="middle"><a accesskey="n" href="dist.readme-solaris.html"><i… 22 <a name="dist.readme-mips"></a>11.�README.mips</h1></div></div></div> 26 -------------------<br> 27 -�MIPS32�and�MIPS64�platforms�are�currently�supported.<br> 28 -�Both�little-endian�and�big-endian�cores�are�supported.<br> [all …]
|
12345678910>>...33