Home
last modified time | relevance | path

Searched +full:- +full:werror (Results 1 – 25 of 629) sorted by relevance

12345678910>>...26

/third_party/libusb/android/jni/
DApplication.mk2 # Copyright © 2012-2013 RealVNC Ltd. <toby.gray@realvnc.com>
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 -std=gnu11 \
23 -Wall \
24 -Wextra \
25 -Wshadow \
26 -Wunused \
27 -Wwrite-strings \
28 -Werror=format-security \
29 -Werror=implicit-function-declaration \
[all …]
/third_party/musl/libc-test/src/common/
DBUILD.gn20 "-pipe",
21 "-std=c99",
22 "-D_POSIX_C_SOURCE=200809L",
23 "-Wall",
24 "-Wno-unused",
25 "-Wno-unused-function",
26 "-Wno-missing-braces",
27 "-Wno-overflow",
28 "-Wno-unknown-pragmas",
29 "-Wno-unsupported-floating-point-opt",
[all …]
/third_party/curl/scripts/zuul/
Dscript.sh9 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
23 set -eo pipefail
28 …./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --e…
30 make TFLAGS=-n test-nonflaky
31 make "TFLAGS=-n -e" test-nonflaky
33 make "TFLAGS=-n -t $tests" test-nonflaky
34 coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -i src -e lib -e tests -e docs -b $PWD/src
35 coveralls --gcov /usr/bin/gcov-8 --gcov-options '\-lp' -e src -i lib -e tests -e docs -b $PWD/lib
39 …./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-code-coverage --e…
41 tests="!TLS-SRP !FTP"
[all …]
/third_party/musl/libc-test/
Dtest_template.gni5 test_dir = "${musl_base_dir}/libc-test"
6 out_test_dir = "${root_out_dir}/obj/${musl_base_dir}/libc-test"
17 "${root_out_dir}/obj/${musl_base_dir}/usr/include/${musl_arch}-linux-ohos"
19 "${root_out_dir}/obj/${musl_base_dir}/usr/lib/${musl_arch}-linux-ohos"
21 test_lib_dir = "musl/libc-test-lib"
32 part_name = "libc-test"
50 "-pipe",
51 "-std=c99",
52 "-D_POSIX_C_SOURCE=200809L",
53 "-Wall",
[all …]
Dconfig.mak.def1 CFLAGS += -pipe -std=c99 -D_POSIX_C_SOURCE=200809L -Wall -Wno-unused-function -Wno-missing-braces -
2 CFLAGS += -Wno-unknown-pragmas -fno-builtin -frounding-math
3 CFLAGS += -Werror=implicit-function-declaration -Werror=implicit-int -Werror=pointer-sign -Werror=p…
4 CFLAGS += -g
5 LDFLAGS += -g
6 LDLIBS += -lpthread -lm -lrt
9 CFLAGS += -D_FILE_OFFSET_BITS=64
10 LDLIBS += -lcrypt -ldl -lresolv -lutil -lpthread
/third_party/gstreamer/gstplugins_bad/ext/openexr/
Dmeson.build5 # Older versions of openexr fail to build with -Werror when using GCC >= 9.2
7 # -std=c++98 in those cases. Just checking the openexr version is not enough
11 # Check whether using the openexr headers with -Werror causes an error
12 if cxx.has_argument('-Werror') and cxx.check_header('ImfRgbaFile.h', dependencies: openexr_dep)
13 if not cxx.check_header('ImfRgbaFile.h', dependencies: openexr_dep, args: '-Werror')
14 # If setting -std to c++98 fixes it, use that! Else, warn.
15 … if cxx.check_header('ImfRgbaFile.h', dependencies: openexr_dep, args: ['-Werror', '-std=c++98'])
18 warning('openexr headers can\'t be included with \'-Werror\', and no workaround found')
/third_party/musl/libc-test/src/api/
DBUILD.gn5 part_name = "libc-test"
17 "//third_party/musl/libc-test/src/common",
21 "-pipe",
22 "-std=c99",
23 "-D_POSIX_C_SOURCE=200809L",
24 "-Wall",
25 "-Wno-unused-function",
26 "-Wno-missing-braces",
27 "-Wno-unused",
28 "-Wno-overflow",
[all …]
/third_party/lz4/
DMakefile2 # LZ4 - Makefile
3 # Copyright (C) Yann Collet 2011-present
29 # - LZ4 source repository : https://github.com/lz4/lz4
30 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
42 default: lib-release lz4-release
50 .PHONY: lib lib-release liblz4.a
52 lib lib-release liblz4.a:
53 @$(MAKE) -C $(LZ4DIR) $@
55 .PHONY: lz4 lz4-release
57 lz4-release : lib-release
[all …]
D.travis.yml7 - name: (macOS) General Test
11 - make # test library build
12 - make clean
13- make test MOREFLAGS='-Werror -Wconversion -Wno-sign-conversion' | tee # test scenario where `std…
15 # Container-based 12.04 LTS Server Edition 64 bit (doesn't support 32-bit includes)
16 - name: (Precise) benchmark test
19 - make -C tests test-lz4 test-lz4c test-fullbench
21 - name: (Precise) frame and fuzzer test
24 - sudo sysctl -w vm.mmap_min_addr=4096
26 - make -C tests test-frametest test-fuzzer
[all …]
/third_party/grpc/third_party/upb/
D.bazelrc1 # Use our custom-configured c++ toolchain.
3 build:m32 --copt=-m32 --linkopt=-m32
4 build:asan --copt=-fsanitize=address --linkopt=-fsanitize=address
5 build:valgrind --run_under='valgrind --leak-check=full --error-exitcode=1'
7 build:ubsan --copt=-fsanitize=undefined --linkopt=-fsanitize=undefined --action_env=UBSAN_OPTIONS=h…
9 # https://github.com/bazelbuild/bazel/issues/11122#issuecomment-613746748
10 build:ubsan --copt=-fno-sanitize=function --copt=-fno-sanitize=vptr
12 build:Werror --copt=-Werror
13 build:Werror --per_file_copt=json/parser@-Wno-error
14 build:Werror --per_file_copt=com_google_protobuf@-Wno-error
[all …]
/third_party/boost/libs/nowide/cmake/
DBoostAddWarnings.cmake3 # target: Non-interface library or executable
6 # Optionally can pass a bool as warnings-as-errors
18 set(supression -Wno-long-long)
19 set(warn_off -w)
20 set(warn_on -Wall ${supression})
21 set(warn_all -Wall ${supression})
22 set(warn_extra -Wall -Wextra ${supression})
23 set(warn_pedantic -Wall -Wextra -pedantic ${supression})
24 set(werror -Werror) variable
26 set(warn_off -w0)
[all …]
/third_party/musl/libc-test/src/nativehook/
DBUILD.gn5 part_name = "libc-test"
19 "-pipe",
20 "-std=c11",
21 "-D_POSIX_C_SOURCE=200809L",
22 "-Wall",
23 "-Wno-unused",
24 "-Wno-unused-function",
25 "-Wno-missing-braces",
26 "-Wno-overflow",
27 "-Wno-unknown-pragmas",
[all …]
/third_party/node/deps/npm/node_modules/verror/lib/
Dverror.js5 var mod_assertplus = require('assert-plus');
9 var mod_isError = require('core-util-is').isError;
22 VError.WError = WError;
26 * Common function used to parse constructor arguments for VError, WError, and
77 'first argument to VError, SError, or WError ' +
95 * where the program assumes some variable is non-null and tries to
139 * This is a regrettable pattern, but JavaScript's built-in Error class
190 * If we've been given an object with properties, shallow-copy that
191 * here. We don't want to use a deep copy in case there are non-plain
240 * These class-level methods are provided so that callers can use them on
[all …]
/third_party/gettext/gettext-runtime/m4/
Dvisibility.m42 dnl Copyright (C) 2005, 2008, 2010-2019 Free Software Foundation, Inc.
9 dnl Tests whether the compiler supports the command-line option
10 dnl -fvisibility=hidden and the function and variable attributes
13 dnl Does *not* test for __visibility__("protected") - which has tricky
16 dnl Does *not* test for __visibility__("internal") - which has processor
18 dnl Does *not* test for #pragma GCC visibility push(hidden) - which is
28 if test -n "$GCC"; then
29 dnl First, check whether -Werror can be added to the command line, or
32 AC_CACHE_CHECK([whether the -Werror option is usable],
35 CFLAGS="$CFLAGS -Werror"
[all …]
/third_party/curl/
D.cirrus.yml8 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
23 # https://cirrus-ci.com/github/curl/curl
30 # image_family: freebsd-13-0-snap
31 - name: FreeBSD 12.2
33 image_family: freebsd-12-2
34 - name: FreeBSD 11.4
36 image_family: freebsd-11-4
41 MAKE_FLAGS: -j 2
44 - pkg update -f
45- pkg install -y autoconf automake libtool pkgconf brotli openldap-client heimdal libpsl libssh2 o…
[all …]
D.azure-pipelines.yml8 # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
30 - 'master'
31 - '*/ci'
36 - 'master'
44 - stage: linux
47 - job: ubuntu
55 vmImage: 'ubuntu-latest'
61 configure: --enable-debug --with-openssl
64 configure: --disable-ipv6 --with-openssl
67 configure: --disable-http --disable-smtp --disable-imap --without-openssl
[all …]
/third_party/pcre2/pcre2/m4/
Dpcre2_visibility.m41 # visibility.m4 serial 4 (gettext-0.18.2)
2 dnl Copyright (C) 2005, 2008, 2010-2011 Free Software Foundation, Inc.
9 dnl Tests whether the compiler supports the command-line option
10 dnl -fvisibility=hidden and the function and variable attributes
13 dnl Does *not* test for __visibility__("protected") - which has tricky
16 dnl Does *not* test for __visibility__("internal") - which has processor
18 dnl Does *not* test for #pragma GCC visibility push(hidden) - which is
32 if test -n "$GCC"; then
33 dnl First, check whether -Werror can be added to the command line, or
36 AC_MSG_CHECKING([whether the -Werror option is usable])
[all …]
/third_party/openh264/
Drun_Test.sh14 # --usage:
24 if [ $# -eq 1 -a "$1" = "UnitTest" ]
27 elif [ $# -eq 2 -a "$1" = "BinaryCompare" ]
38 CFLAGS=-Werror make -B ENABLE64BIT=Yes BUILDTYPE=Release all plugin test
39 CFLAGS=-Werror make -B ENABLE64BIT=Yes BUILDTYPE=Debug all plugin test
40 CFLAGS=-Werror make -B ENABLE64BIT=No BUILDTYPE=Release all plugin test
41 CFLAGS=-Werror make -B ENABLE64BIT=No BUILDTYPE=Debug all plugin test
47 if [ ! $# -eq 2 ]
72 if [ ! $? -eq 0 ]
80 set -e
[all …]
/third_party/libusb/
Dconfigure.ac5 [^#define\s*$1\s*\([0-9]*\).*], [\1]))])
8 [^#define\s*$1\s*"\(-rc[0-9]*\)".*], [\1]))])
19 AC_INIT([libusb-1.0], [LIBUSB_MAJOR[.]LIBUSB_MINOR[.]LIBUSB_MICRO[]LIBUSB_RC], [libusb-devel@lists.…
32 dnl http://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
37 LT_LDFLAGS="-version-info ${lt_current}:${lt_revision}:${lt_age} -no-undefined"
44 dnl check for -std=gnu11 compiler support (optional)
45 dnl note that we don't just check if the compiler accepts '-std=x11'
49 CFLAGS="-std=gnu11"
50 AC_MSG_CHECKING([if $CC supports -std=gnu11])
57 dnl fallback check for -std=c11 compiler support (required)
[all …]
/third_party/googletest/ci/
Dlinux-presubmit.sh32 set -euox pipefail
34 readonly LINUX_LATEST_CONTAINER="gcr.io/google.com/absl-177019/linux_hybrid-latest:20210525"
35 readonly LINUX_GCC_FLOOR_CONTAINER="gcr.io/google.com/absl-177019/linux_gcc-floor:20201015"
37 if [[ -z ${GTEST_ROOT:-} ]]; then
41 if [[ -z ${STD:-} ]]; then
49 --volume="${GTEST_ROOT}:/src:ro" \
50 --tmpfs="/build:exec" \
51 --workdir="/build" \
52 --rm \
53 --env="CC=${cc}" \
[all …]
/third_party/lz4/.circleci/
Dconfig.yml17 shell: /bin/bash --login
19 …t or see https://circleci.com/docs/2.0/env-vars/#interpolating-environment-variables-to-set-other-
21 CIRCLE_ARTIFACTS: /tmp/circleci-artifacts
22 CIRCLE_TEST_REPORTS: /tmp/circleci-test-results
23 …# In CircleCI 1.0 we used a pre-configured image with a large number of languages and other packag…
24 # In CircleCI 2.0 you can now specify your own image, or use one of our pre-configured images.
26 # We have selected a pre-built image that mirrors the build environment we use on
29 # VM instead of a container) see https://circleci.com/docs/2.0/executor-types/
30 # To see the list of pre-built images that CircleCI provides for most common languages see
31 # https://circleci.com/docs/2.0/circleci-images/
[all …]
/third_party/selinux/checkpolicy/
DMakefile11 YACC = bison -y
13 CFLAGS ?= -g -Wall -Werror -Wshadow -O2 -fno-strict-aliasing
19 LDLIBS_LIBSEPOLA := -l:libsepol.a
30 $(MAKE) -C test
33 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS_LIBSEPOLA)
36 $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS_LIBSEPOLA)
39 $(CC) $(CFLAGS) -o $@ -c $<
42 $(CC) $(filter-out -Werror, $(CFLAGS)) -o $@ -c $<
45 $(CC) $(filter-out -Werror, $(CFLAGS)) -o $@ -c $<
48 $(YACC) -d policy_parse.y
[all …]
/third_party/benchmark/
DCMakeLists.txt22 option(BENCHMARK_ENABLE_WERROR "Build Release candidates with -Werror." ON)
23 option(BENCHMARK_FORCE_WERROR "Build Release candidates with -Werror regardless of compiler issues.…
36 …set(BENCHMARK_BUILD_32_BITS OFF CACHE BOOL "Build a 32 bit version of the library - unsupported wh…
44 option(BENCHMARK_DOWNLOAD_DEPENDENCIES "Allow the downloading and in-tree building of unmet depende…
56 # cross-compilation (e.g. Host=x86_64, target=aarch64) requires using the
58 # See https://gitlab.kitware.com/cmake/cmake/-/issues/15170
70 # FIXME: The --coverage flag needs to be removed when building assembly
134 add_required_cxx_compiler_flag(-m32)
139 string(REGEX REPLACE "[-/]W[1-4]" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
141 add_definitions(-D_CRT_SECURE_NO_WARNINGS)
[all …]
/third_party/protobuf/kokoro/linux/bazel/
Dbuild.sh4 set -ex
13 testlogs_dir=$(bazel info bazel-testlogs)
14 testlogs=$(find "${testlogs_dir}" -name "*.log")
23 git submodule update --init --recursive
26 bazel test --copt=-Werror --host_copt=-Werror \
34 trap - EXIT
/third_party/node/deps/cares/m4/
Dcares-confopts.m43 # Copyright (C) 2008 - 2013 by Daniel Stenberg et al
22 dnl -------------------------------------------------
24 dnl --enable-debug or --disable-debug, and set shell
33 AS_HELP_STRING([--enable-debug],[Enable debug build options])
34 AS_HELP_STRING([--disable-debug],[Disable debug build options]),
38 dnl --disable-debug option used
46 dnl --enable-debug option used
55 dnl -------------------------------------------------
57 dnl --enable-nonblocking or --disable-nonblocking, and
62 AC_MSG_CHECKING([whether to enable non-blocking communications])
[all …]

12345678910>>...26