Searched +full:- +full:- +full:disable +full:- +full:shared (Results 1 – 25 of 1128) sorted by relevance
12345678910>>...46
| /external/oss-fuzz/projects/dlplibs/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 18 tar -xJf $SRC/zlib-1.2.11.tar.xz 19 pushd zlib-1.2.11 20 ./configure --static 21 make -j$(nproc) 22 export ZLIB_CFLAGS="-I$(pwd)" 23 export ZLIB_LIBS="-L$(pwd) -lz" 26 tar -xzf $SRC/lcms2-2.8.tar.gz 27 pushd lcms2-2.8 [all …]
|
| /external/pcre/maint/ |
| D | ManyConfigTests | 13 # -noasan skip the test that uses -fsanitize=address 14 # -nousan skip the test that uses -fsanitize=undefined 15 # -nodebug skip the test that uses --enable-debug 16 # -nojit skip all JIT tests 17 # -nojitmain skip non-valgrind JIT tests 18 # -nojitvalgrind skip JIT tests with valgrind 19 # -nomain skip all the main (non-JIT) set of tests 20 # -nomainvalgrind skip the main (non-JIT) valgrind tests 21 # -notmp skip the tests in a temporary directory 22 # -notmpjit skip the JIT test in a temporary directory [all …]
|
| /external/oss-fuzz/projects/ecc-diff-fuzzer/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 22 tar -xvf ../gmp-6.1.2.tar.bz2 23 cd gmp-6.1.2 25 #we could do instead --enable-fat 26 ./configure --disable-shared --disable-assembly 27 make -j$(nproc) 31 ./configure --disable-shared --disable-openssl 32 make -j$(nproc) 39 make -j$(nproc) [all …]
|
| /external/oss-fuzz/projects/wget2/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 export CPPFLAGS="-I$WGET2_DEPS_PATH/include" 21 export LDFLAGS="-L$WGET2_DEPS_PATH/lib" 27 ./configure --enable-static --disable-shared --prefix=$WGET2_DEPS_PATH 28 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 …]
|
| /external/oss-fuzz/projects/gnutls/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 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_PATH 28 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 SIGILL 39 # https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3119 [all …]
|
| /external/oss-fuzz/projects/gnupg/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 cd libgpg-error 22 ./configure --disable-doc --enable-static --disable-shared 28 ./configure --disable-doc --enable-static --disable-shared 34 ./configure --disable-doc --enable-static --disable-shared 40 ./configure --disable-doc --enable-static --disable-shared 46 ./configure --disable-doc --enable-static --disable-shared 58 ./configure --disable-doc --enable-maintainer-mode 59 make -j$(nproc) all
|
| /external/oss-fuzz/projects/libvips/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 23 ./configure --static --prefix=$WORK 24 make -j$(nproc) all 30 autoreconf -fi 32 --enable-static \ 33 --disable-shared \ 34 --disable-docs \ 35 --disable-dependency-tracking \ 36 --prefix=$WORK [all …]
|
| /external/oss-fuzz/projects/ffmpeg/ |
| D | build.sh | 1 #!/bin/bash -eux 8 # http://www.apache.org/licenses/LICENSE-2.0 18 # 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_PATH 30 bzip2 -f -d alsa-lib-* 31 tar xf alsa-lib-* 32 rm alsa-lib-*.tar 33 cd alsa-lib-* [all …]
|
| /external/compiler-rt/test/profile/ |
| D | instrprof-value-prof-shared.test | 1 // RUN: mkdir -p %t.d 2 …-O2 -mllvm -enable-value-profiling=true -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=… 3 …-O2 -mllvm -enable-value-profiling=true -mllvm -vp-static-alloc=true -mllvm -vp-counters-per-site=… 5 // RUN: llvm-profdata merge -o %t.profdata %t.profraw 6 // RUN: llvm-profdata show --all-functions -ic-targets %t.profdata | FileCheck %S/Inputs/instrpro… 7 // RUN: llvm-profdata show --all-functions -ic-targets %t.profdata | FileCheck %S/Inputs/instrpro… 10 …-O2 -mllvm -disable-vp=false -Xclang -fprofile-instrument=llvm -mllvm -vp-static-alloc=true -mllvm… 11 …-O2 -mllvm -disable-vp=false -Xclang -fprofile-instrument=llvm -mllvm -vp-static-alloc=true -mllv… 13 // RUN: llvm-profdata merge -o %t.ir.profdata %t.ir.profraw 14 // RUN: llvm-profdata show --all-functions -ic-targets %t.ir.profdata | FileCheck %S/Inputs/instr… [all …]
|
| /external/oss-fuzz/projects/libpsl/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 export CPPFLAGS="-I$DEPS_PATH/include" 21 export LDFLAGS="-L$DEPS_PATH/lib" 24 export GNULIB_TOOL=$GNULIB_SRCDIR/gnulib-tool 29 CFLAGS="$CFLAGS -fno-sanitize=vptr" \ 30 CXXFLAGS="$CXXFLAGS -fno-sanitize=vptr" \ 31 CPPFLAGS="$CPPFLAGS -fno-sanitize=vptr" \ 32 ./configure --disable-shared --enable-static --disable-extras --disable-icuio --disable-layoutex \ 33 --disable-tests --disable-samples --with-data-packaging=static --prefix=$DEPS_PATH [all …]
|
| /external/oss-fuzz/projects/wget/ |
| D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 20 export CPPFLAGS="-I$WGET_DEPS_PATH/include" 21 export LDFLAGS="-L$WGET_DEPS_PATH/lib" 27 ./configure --enable-static --disable-shared --prefix=$WGET_DEPS_PATH --cache-file ../config.cache 28 make -j$(nproc) 33 ./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$WGET_DE… 34 make -j$(nproc) 39 …onfigure --enable-static --disable-shared --disable-gtk-doc --enable-runtime=libidn2 --enable-buil… 40 make -j$(nproc) [all …]
|
| /external/python/cpython2/Modules/_ctypes/libffi/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2013 Free Software 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/libexif/auto-m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
| /external/google-breakpad/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 16 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 17 # ------------------------------------------ 19 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 22 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 23 # --------------------------------------- 24 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 25 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 35 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 36 # ------------------------------------------------------------ [all …]
|
| /external/libffi/ |
| D | .travis.yml | 1 --- 6 # For qemu-powered targets, get the list of supported processors from 7 # travis by setting QEMU_CPU=help, then set -mcpu= for the compilers 12 - os: linux 13 env: HOST=or1k-elf RUNTESTFLAGS="--target_board or1k-sim" DEJAGNU="/opt/.travis/site.exp" 14 - os: linux 15 env: HOST=m32r-elf RUNTESTFLAGS="--target_board m32r-sim" DEJAGNU="/opt/.travis/site.exp" 16 - os: linux 17 env: HOST=bfin-elf RUNTESTFLAGS="--target_board bfin-sim" DEJAGNU="/opt/.travis/site.exp" 19 # - os: osx [all …]
|
| /external/speex/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/libpng/scripts/autoconf/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/curl/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2022 Free 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/libevent/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2018 Free Software 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/pcre/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 3 # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021 Free Software 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) [all …]
|
| /external/libconfig/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
| /external/lmfit/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
| /external/libcap-ng/libcap-ng-0.7/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
| /external/cronet/third_party/apache-portable-runtime/src/build/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
| /external/libnfnetlink/m4/ |
| D | ltoptions.m4 | 1 # Helper functions for option handling. -*- Autoconf -*- 17 # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) 18 # ------------------------------------------ 20 [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) 23 # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) 24 # --------------------------------------- 25 # Set option OPTION-NAME for macro MACRO-NAME, and if there is a 26 # matching handler defined, dispatch to it. Other OPTION-NAMEs are 36 # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) 37 # ------------------------------------------------------------ [all …]
|
12345678910>>...46