Searched +full:- +full:- +full:disable (Results 1 – 25 of 1265) sorted by relevance
12345678910>>...51
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.018 tar -xJf $SRC/zlib-1.2.11.tar.xz19 pushd zlib-1.2.1120 ./configure --static21 make -j$(nproc)22 export ZLIB_CFLAGS="-I$(pwd)"23 export ZLIB_LIBS="-L$(pwd) -lz"26 tar -xzf $SRC/lcms2-2.8.tar.gz27 pushd lcms2-2.8[all …]
1 <!--4 SPDX-License-Identifier: curl5 -->7 # Code defines to disable features and protocols11 Disable support for Alt-Svc: HTTP headers.15 Disable support for binding the local end of connections.19 Disable support for HTTP cookies.23 Disable support for the Basic authentication methods.27 Disable support for the Bearer authentication methods.31 Disable support for the Digest authentication methods.[all …]
7 # http://www.apache.org/licenses/LICENSE-2.022 # pylint: disable=unused-argument29 # pylint: disable=unused-argument36 # pylint: disable=unused-argument43 # pylint: disable=unused-argument50 # pylint: disable=unused-argument57 # pylint: disable=unused-argument64 # pylint: disable=unused-argument71 # pylint: disable=unused-argument78 # pylint: disable=unused-argument[all …]
1 RUN: not llvm-dis -disable-output %p/Inputs/invalid-pr20485.bc 2>&1 | \2 RUN: FileCheck --check-prefix=INVALID-ENCODING %s3 RUN: not llvm-dis -disable-output %p/Inputs/invalid-abbrev.bc 2>&1 | \4 RUN: FileCheck --check-prefix=BAD-ABBREV %s5 RUN: not llvm-dis -disable-output %p/Inputs/invalid-unexpected-eof.bc 2>&1 | \6 RUN: FileCheck --check-prefix=UNEXPECTED-EOF %s7 RUN: not llvm-dis -disable-output %p/Inputs/invalid-bad-abbrev-number.bc 2>&1 | \8 RUN: FileCheck --check-prefix=BAD-ABBREV-NUMBER %s9 RUN: not llvm-dis -disable-output %p/Inputs/invalid-type-table-forward-ref.bc 2>&1 | \10 RUN: FileCheck --check-prefix=BAD-TYPE-TABLE-FORWARD-REF %s[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.020 export CPPFLAGS="-I$DEPS_PATH/include"21 export LDFLAGS="-L$DEPS_PATH/lib -L$DEPS_PATH/lib64"27 ./configure --enable-static --disable-shared --prefix=$DEPS_PATH28 make -j$(nproc)34 …./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$DEPS_P…35 make -j$(nproc)38 # always disable assembly in GMP to avoid issues due to SIGILL39 # https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3119[all …]
3 // (C) Copyright Ion Gaztanaga 2005-2013. Distributed under the Boost20 #pragma warning (disable : 4127) // conditional expression is constant21 …#pragma warning (disable : 4146) // unary minus operator applied to unsigned type, result still un…22 #pragma warning (disable : 4197) // top-level volatile in cast is ignored23 …#pragma warning (disable : 4251) // "identifier" : class "type" needs to have dll-interface to be …24 …#pragma warning (disable : 4275) // non DLL-interface classkey "identifier" used as base for DLL-i…25 #pragma warning (disable : 4284) // odd return type for operator->26 …#pragma warning (disable : 4290) // C++ exception specification ignored except to indicate a funct…27 #pragma warning (disable : 4324) // structure was padded due to __declspec(align(28 …pragma warning (disable : 4345) // behavior change: an object of POD type constructed with an init…[all …]
13 # -noasan skip the test that uses -fsanitize=address14 # -nousan skip the test that uses -fsanitize=undefined15 # -nodebug skip the test that uses --enable-debug16 # -nojit skip all JIT tests17 # -nojitmain skip non-valgrind JIT tests18 # -nojitvalgrind skip JIT tests with valgrind19 # -nomain skip all the main (non-JIT) set of tests20 # -nomainvalgrind skip the main (non-JIT) valgrind tests21 # -notmp skip the tests in a temporary directory22 # -notmpjit skip the JIT test in a temporary directory[all …]
1 <?xml version="1.0" encoding="utf-8"?>3 <!--/* Copyright (C) 2016-2017 The Khronos Group Inc9 * http://www.apache.org/licenses/LICENSE-2.016 */-->17 <!--/* WARNING: This is auto-generated file. Do not modify, since changes will19 */-->21 …6-main.txt" commandLine="--deqp-screen-rotation=unspecified --deqp-surface-width=64 --deqp-surface…22 …6-main.txt" commandLine="--deqp-screen-rotation=unspecified --deqp-surface-width=113 --deqp-surfac…23 …-main.txt" commandLine="--deqp-screen-rotation=unspecified --deqp-surface-width=64 --deqp-surface-…24 …-main.txt" commandLine="--deqp-screen-rotation=unspecified --deqp-surface-width=-1 --deqp-surface-…[all …]
8 # https://www.apache.org/licenses/LICENSE-2.030 # https://gitlab.kitware.com/cmake/cmake/-/issues/1777042 # Patch Eigen to disable Fortran compiler check for BLAS and LAPACK tests.50 # Patch Eigen to disable benchmark suite.55 # Patch Eigen to disable doc generation, as it builds C++ standalone apps with67 set(BUILD_TESTING OFF CACHE BOOL "Disable tests.")68 set(EIGEN_TEST_CXX11 OFF CACHE BOOL "Disable tests of C++11 features.")69 set(EIGEN_BUILD_BTL OFF CACHE BOOL "Disable benchmark suite.")70 set(EIGEN_BUILD_PKGCONFIG OFF CACHE BOOL "Disable pkg-config.")71 set(EIGEN_SPLIT_LARGE_TESTS OFF CACHE BOOL "Disable test splitting.")[all …]
3 set -e8 echo "Run 'lunch aosp_arm-eng' and build the current version first." >&220 HOST="arm-linux-androideabi"22 export CC="${T}/prebuilts/clang/host/linux-x86/${CLANG_VERSION}/bin/clang"23 export LD="${T}/prebuilts/clang/host/linux-x86/${CLANG_VERSION}/bin/lld"28 "--sysroot ${T}/out/soong/ndk/sysroot/"31 "-I${T}/external/zlib/"32 # We don't have target-specific clang binaries like the NDK, so provide34 "--target=armv7a-linux-androideabi34"41 "-L${ANDROID_PRODUCT_OUT}/system/lib/"[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.020 export CPPFLAGS="-I$WGET2_DEPS_PATH/include"21 export LDFLAGS="-L$WGET2_DEPS_PATH/lib"27 ./configure --enable-static --disable-shared --prefix=$WGET2_DEPS_PATH28 make -j$(nproc)33 ./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$WGET2_D…34 make -j$(nproc)39 ./configure --enable-static --disable-shared --disable-gtk-doc --enable-runtime=libidn2 --enable-bu…40 make -j$(nproc)[all …]
1 ; RUN: llc < %s -mtriple=arm-none-eabi -disable-post-ra -o - | FileCheck %s --check-prefix=CHECK-EA…2 ; RUN: llc < %s -mtriple=arm-none-eabihf -disable-post-ra -o - | FileCheck %s --check-prefix=CHECK-…3 ; RUN: llc < %s -mtriple=arm-none-androideabi -disable-post-ra -o - | FileCheck %s --check-prefix=C…4 ; RUN: llc < %s -mtriple=arm-none-gnueabi -disable-post-ra -o - | FileCheck %s --check-prefix=CHECK…5 ; RUN: llc < %s -mtriple=arm-none-gnueabihf -disable-post-ra -o - | FileCheck %s --check-prefix=CHE…6 ; RUN: llc < %s -mtriple=arm-none-musleabi -disable-post-ra -o - | FileCheck %s --check-prefix=CHEC…7 ; RUN: llc < %s -mtriple=arm-none-musleabihf -disable-post-ra -o - | FileCheck %s --check-prefix=CH…8 ; RUN: llc < %s -mtriple=arm-none-eabi -meabi=gnu -disable-post-ra -o - | FileCheck %s --check-pref…9 ; RUN: llc < %s -mtriple=arm-none-eabihf -meabi=gnu -disable-post-ra -o - | FileCheck %s --check-pr…10 ; RUN: llc < %s -mtriple=arm-none-androideabi -meabi=gnu -disable-post-ra -o - | FileCheck %s --che…[all …]
1 ; RUN: llc < %s -mtriple=arm-unknown-unknown | FileCheck %s --check-prefix=NO-OPTION2 ; RUN: llc < %s -mtriple=arm-unknown-unknown -disable-tail-calls | FileCheck %s --check-prefix=DISA…3 ; RUN: llc < %s -mtriple=arm-unknown-unknown -disable-tail-calls=false | FileCheck %s --check-prefi…5 ; Check that command line option "-disable-tail-calls" overrides function6 ; attribute "disable-tail-calls".8 ; NO-OPTION-LABEL: {{\_?}}func_attr9 ; NO-OPTION: bl {{\_?}}callee11 ; DISABLE-FALSE-LABEL: {{\_?}}func_attr12 ; DISABLE-FALSE: b {{\_?}}callee14 ; DISABLE-TRUE-LABEL: {{\_?}}func_attr[all …]
15 // 'm_A' : class 'A' needs to have dll-interface to be used by clients of class 'B'16 #pragma warning(disable: 4251)17 // non dll-interface class 'A' used as base for dll-interface class 'B'18 #pragma warning(disable: 4275)20 #pragma warning(disable: 4355)22 #pragma warning(disable: 4800)24 #pragma warning(disable: 4100)26 #pragma warning(disable: 4127)28 #pragma warning(disable: 4510)30 #pragma warning(disable: 4511)[all …]
1 ; RUN: llc %s -o - -enable-shrink-wrap=true -ifcvt-fn-start=1 -ifcvt-fn-stop=0 -mtriple=thumb-macho…2 ; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=ENABLE --check-prefix=ENABLE-V4T3 ; RUN: llc %s -o - -enable-shrink-wrap=true -ifcvt-fn-start=1 -ifcvt-fn-stop=0 -mtriple=thumbv5-mac…4 ; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=ENABLE --check-prefix=ENABLE-V5T5 ; RUN: llc %s -o - -enable-shrink-wrap=false -ifcvt-fn-start=1 -ifcvt-fn-stop=0 -mtriple=thumb-mach…6 ; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=DISABLE --check-prefix=DISABLE-V4T7 ; RUN: llc %s -o - -enable-shrink-wrap=false -ifcvt-fn-start=1 -ifcvt-fn-stop=0 -mtriple=thumbv5-ma…8 ; RUN: | FileCheck %s --check-prefix=CHECK --check-prefix=DISABLE --check-prefix=DISABLE-V5T13 ; shrink-wrapping. Moreover, some of the inline asm statements (nop)16 ; Also disable the late if-converter as it makes harder to reason on[all …]
1 #!/bin/bash -eux8 # http://www.apache.org/licenses/LICENSE-2.018 # Disable UBSan vptr since several targets built with -fno-rtti.19 export CFLAGS="$CFLAGS -fno-sanitize=vptr"20 export CXXFLAGS="$CXXFLAGS -fno-sanitize=vptr"24 mkdir -p $FFMPEG_DEPS_PATH30 bzip2 -f -d alsa-lib-*31 tar xf alsa-lib-*32 rm alsa-lib-*.tar33 cd alsa-lib-*[all …]
9 # http://www.apache.org/licenses/LICENSE-2.021 set -e23 if [ $# -ne 0 ]; then29 common_params="--disable-examples --disable-docs --enable-realtime-only"30 common_params+=" --disable-vp8 --disable-vp9-encoder --disable-webm-io"31 common_params+=" --disable-libyuv --disable-runtime-cpu-detect"32 common_params+=" --enable-external-build"35 arch[0]="armeabi-v7a"36 config[0]="--target=armv7-android-gcc --enable-neon --enable-neon-asm"39 config[1]="--force-target=x86-android-gcc --disable-sse2"[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.019 sed -i 's/check_inconsistencies=yes/check_inconsistencies=no/' common/acx_pthread.m420 sed -i 's/avahiinclude_HEADERS =/avahiinclude_HEADERS = dns.h hashmap.h/' avahi-core/Makefile.am22 …--disable-stack-protector --disable-qt3 --disable-qt4 --disable-qt5 --disable-gtk --disable-gtk3 -…23 make -j "$(nproc)"26 $CXX $CXXFLAGS -std=c++11 "-I$WORK/include/" \28 -o "$OUT/avahi_packet_consume_record_fuzzer" \30 "$WORK/lib/libavahi-core.a" "$WORK/lib/libavahi-common.a"32 $CXX $CXXFLAGS -std=c++11 "-I$WORK/include/" \[all …]
1 ; RUN: llc < %s -march x86-64 | FileCheck %s --check-prefix=NO-OPTION2 ; RUN: llc < %s -march x86-64 -disable-tail-calls | FileCheck %s --check-prefix=DISABLE-TRUE3 ; RUN: llc < %s -march x86-64 -disable-tail-calls=false | FileCheck %s --check-prefix=DISABLE-FALSE5 ; Check that command line option "-disable-tail-calls" overrides function6 ; attribute "disable-tail-calls".8 ; NO-OPTION-LABEL: {{\_?}}func_attr9 ; NO-OPTION: callq {{\_?}}callee11 ; DISABLE-FALSE-LABEL: {{\_?}}func_attr12 ; DISABLE-FALSE: jmp {{\_?}}callee14 ; DISABLE-TRUE-LABEL: {{\_?}}func_attr[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.024 export CPPFLAGS="-I$DEPS_PATH/include"25 export LDFLAGS="-L$DEPS_PATH/lib"27 export GNULIB_TOOL=$SRC/gnulib/gnulib-tool31 ./configure --enable-static --disable-shared --prefix=$DEPS_PATH32 make -j$(nproc)38 GNUTLS_CONFIGURE_FLAGS="--disable-hardware-acceleration"39 NETTLE_CONFIGURE_FLAGS="--disable-assembler --disable-fat"44 ./configure --enable-mini-gmp --enable-static --disable-shared --disable-documentation --prefix=$DE…[all …]
3 // (C) Copyright Ion Gaztanaga 2006-201320 …#pragma warning (disable : 4275) // non DLL-interface classkey "identifier" used as base for DLL-i…21 …#pragma warning (disable : 4251) // "identifier" : class "type" needs to have dll-interface to be …22 …#pragma warning (disable : 4675) // "method" should be declared "static" and have exactly one para…23 #pragma warning (disable : 4996) // "function": was declared deprecated24 …#pragma warning (disable : 4503) // "identifier" : decorated name length exceeded, name was trunca…25 #pragma warning (disable : 4284) // odd return type for operator->26 #pragma warning (disable : 4244) // possible loss of data27 #pragma warning (disable : 4521) ////Disable "multiple copy constructors specified"28 #pragma warning (disable : 4127) //conditional expression is constant[all …]
1 #!/bin/bash -eu8 # http://www.apache.org/licenses/LICENSE-2.023 ./configure --static --prefix=$WORK24 make -j$(nproc) all30 autoreconf -fi32 --enable-static \33 --disable-shared \34 --disable-docs \35 --disable-dependency-tracking \36 --prefix=$WORK[all …]