Searched +full:- +full:werror (Results 1 – 25 of 912) sorted by relevance
12345678910>>...37
/external/jemalloc_new/ |
D | .travis.yml | 6 - os: linux 7 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 8 - os: osx 9 … env: CC=gcc CXX=g++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 10 - os: linux 11 … CC=clang CXX=clang++ COMPILER_FLAGS="" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-bounds" 12 - os: linux 13 …env: CC=gcc CXX=g++ COMPILER_FLAGS="-m32" CONFIGURE_FLAGS="" EXTRA_CFLAGS="-Werror -Wno-array-boun… 17 - gcc-multilib 18 - os: linux [all …]
|
/external/clang/test/Modules/ |
D | Werror.m | 1 // RUN: rm -rf %t 2 // RUN: rm -rf %t-saved 3 // RUN: mkdir -p %t-saved 5 // Initial module build (-Werror=header-guard) 6 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \ 7 // RUN: -F %S/Inputs -fsyntax-only %s -verify -Wno-incomplete-umbrella \ 8 // RUN: -Werror=header-guard 9 // RUN: cp %t/Module.pcm %t-saved/Module.pcm 11 // Building with looser -Werror options does not rebuild 12 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -fdisable-module-hash \ [all …]
|
D | require-modular-includes.m | 1 // RUN: rm -rf %t 5 // RUN: %clang_cc1 -Wnon-modular-include-in-framework-module -fmodules -fimplicit-module-maps \ 6 // RUN: -fmodules-cache-path=%t -F %S/Inputs/require-modular-includes \ 7 // RUN: -Werror -fsyntax-only -x objective-c - 9 // Including a non-modular header 11 // RUN: %clang_cc1 -Wnon-modular-include-in-framework-module -fmodules -fimplicit-module-maps \ 12 // RUN: -fmodules-cache-path=%t -F %S/Inputs/require-modular-includes \ 13 // RUN: -I %S/Inputs/require-modular-includes \ 14 // RUN: -fsyntax-only -x objective-c - 2>&1 | FileCheck %s 18 // RUN: %clang_cc1 -Wnon-modular-include-in-framework-module -fmodules -fimplicit-module-maps \ [all …]
|
D | implementation-of-module.m | 1 // RUN: rm -rf %t 2 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import … 3 // RUN: -fmodule-implementation-of category_right -fsyntax-only 5 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import … 6 // RUN: -fmodule-implementation-of category_right -dM -E -o - 2>&1 | FileCheck %s 7 // CHECK-NOT: __building_module 9 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -w -Werror=auto-import … 10 // RUN: -fmodule-implementation-of category_left -verify 12 // RUN: %clang_cc1 -x objective-c-header -fmodules -fimplicit-module-maps -fmodules-cache-path=%t -… 13 // RUN: -fmodule-implementation-of category_right -emit-pch -o %t.pch [all …]
|
/external/clang/test/Driver/ |
D | qa_override.c | 1 …CCC_OVERRIDE_OPTIONS="#+-Os +-Oz +-O +-O3 +-Oignore +a +b +c xb Xa Omagic ^-### " %clang -target … 2 …_OVERRIDE_OPTIONS="x-Werror +-msse" %clang -target x86_64-apple-darwin -Werror %s -c -### 2>&1 | F… 4 // CHECK: "-cc1" 5 // CHECK-NOT: "-Oignore" 6 // CHECK: "-Omagic" 7 // CHECK-NOT: "-Oignore" 9 // RM-WERROR: ### CCC_OVERRIDE_OPTIONS: x-Werror +-msse 10 // RM-WERROR-NEXT: ### Deleting argument -Werror 11 // RM-WERROR-NEXT: ### Adding argument -msse at end 12 // RM-WERROR-NOT: "-Werror"
|
D | cl-pch.cpp | 1 // Note: %s and %S must be preceded by --, otherwise it may be interpreted as a 2 // command-line option, e.g. on Mac where %s is commonly under /Users. 5 // RUN: %clang_cl -Werror /Ycpchfile.h /FIpchfile.h /c -### -- %s 2>&1 \ 6 // RUN: | FileCheck -check-prefix=CHECK-YC %s 8 // CHECK-YC: cc1 9 // CHECK-YC: -emit-pch 10 // CHECK-YC: -o 11 // CHECK-YC: pchfile.pch 12 // CHECK-YC: -x 13 // CHECK-YC: "c++" [all …]
|
/external/clang/test/Misc/ |
D | diag-mapping2.c | 5 // RUN: %clang_cc1 %s -w 2>&1 | not grep diagnostic 6 // RUN: %clang_cc1 %s -Wno-#warnings 2>&1 | not grep diagnostic 8 // -Werror can map all warnings to error. 9 // RUN: not %clang_cc1 %s -Werror 2>&1 | grep "error: foo" 11 // -Werror can map this one warning to error. 12 // RUN: not %clang_cc1 %s -Werror=#warnings 2>&1 | grep "error: foo" 14 // -Wno-error= overrides -Werror. rdar://3158301 15 // RUN: %clang_cc1 %s -Werror -Wno-error=#warnings 2>&1 | grep "warning: foo" 17 // -Wno-error overrides -Werror. PR4715 18 // RUN: %clang_cc1 %s -Werror -Wno-error 2>&1 | grep "warning: foo"
|
D | diag-mapping.c | 4 // RUN: %clang_cc1 %s -Wno-extra-tokens 2>&1 | not grep diagnostic 6 // -Werror can map all warnings to error. 7 // RUN: not %clang_cc1 %s -Werror 2>&1 | grep "error:" 9 // -Werror can map this one warning to error. 10 // RUN: not %clang_cc1 %s -Werror=extra-tokens 2>&1 | grep "error:" 13 // RUN: %clang_cc1 %s -Werror=trigraphs 2>&1 | grep "warning:" 15 // This should stay a warning with -pedantic. 16 // RUN: %clang_cc1 %s -pedantic 2>&1 | grep "warning:" 18 // This should emit an error with -pedantic-errors. 19 // RUN: not %clang_cc1 %s -pedantic-errors 2>&1 | grep "error:" [all …]
|
/external/google-fruit/extras/scripts/ |
D | postsubmit-helper.sh | 1 #!/bin/bash -x 3 set -e 10 gcc-4.9) 11 export CC=gcc-4.9 12 export CXX=g++-4.9 15 gcc-5) 16 export CC=gcc-5 17 export CXX=g++-5 20 gcc-6) 21 export CC=gcc-6 [all …]
|
/external/lz4/ |
D | Makefile | 2 # 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 50 default: lib-release lz4-release 58 .PHONY: lib lib-release liblz4.a 60 lib lib-release liblz4.a: 61 @$(MAKE) -C $(LZ4DIR) $@ 63 .PHONY: lz4 lz4-release 65 lz4-release : lib-release [all …]
|
/external/clang/test/VFS/ |
D | real-path-found-first.m | 2 // use its VFS-mapped path. If we accidentally use the real path in header 8 // RUN: rm -rf %t %t-cache %t.pch 9 // RUN: mkdir -p %t/SomeFramework.framework/Modules 11 // RUN: sed -e "s:INPUT_DIR:%S/Inputs:g" -e "s:OUT_DIR:%t:g" %S/Inputs/vfsoverlay.yaml > %t.yaml 14 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-cache -F %t \ 15 // RUN: -ivfsoverlay %t.yaml -fsyntax-only %s -verify -Wauto-import \ 16 // RUN: -Werror=non-modular-include-in-framework-module 20 // RUN: %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%t-cache -F %t \ 21 // RUN: -ivfsoverlay %t.yaml -fsyntax-only %s -verify -Wauto-import \ 22 // RUN: -Werror=non-modular-include-in-framework-module [all …]
|
/external/tinyalsa/ |
D | Android.bp | 12 cflags: ["-Werror", "-Wno-macro-redefined"], 28 cflags: ["-Werror"], 40 cflags: ["-Werror"], 47 cflags: ["-Werror", "-Wall"], 54 cflags: ["-Werror"], 61 cflags: ["-Werror"],
|
/external/libxkbcommon/xkbcommon/build-aux/ |
D | output.1 | 2 @%:@ Guess values for system-dependent variables and create Makefiles. 8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 13 ## -------------------- ## 15 ## -------------------- ## 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 24 alias -g '${1+"$@"}'='"$@"' 27 case `(set -o) 2>/dev/null` in @%:@( 29 set -o posix ;; @%:@( 45 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
D | output.2 | 2 @%:@ Guess values for system-dependent variables and create Makefiles. 8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 13 ## -------------------- ## 15 ## -------------------- ## 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 24 alias -g '${1+"$@"}'='"$@"' 27 case `(set -o) 2>/dev/null` in @%:@( 29 set -o posix ;; @%:@( 45 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
D | output.0 | 2 @%:@ Guess values for system-dependent variables and create Makefiles. 8 @%:@ Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc. 13 ## -------------------- ## 15 ## -------------------- ## 19 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : 22 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which 24 alias -g '${1+"$@"}'='"$@"' 27 case `(set -o) 2>/dev/null` in @%:@( 29 set -o posix ;; @%:@( 45 if test -z "$BASH_VERSION$ZSH_VERSION" \ [all …]
|
/external/clang/test/PCH/ |
D | pragma-detect_mismatch.c | 2 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm … 3 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm … 6 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-pch -… 7 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm … 8 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-pch -… 9 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm …
|
D | pragma-comment.c | 2 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm … 3 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm … 6 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-pch -… 7 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple thumbv7-windows -fms-extensions -emit-llvm … 8 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-pch -… 9 // RUN: %clang_cc1 %s -Wunknown-pragmas -Werror -triple x86_64-pc-win32 -fms-extensions -emit-llvm …
|
/external/strace/m4/ |
D | st_warn_cflags.m4 | 2 gl_WARN_ADD([-Wall]) 3 gl_WARN_ADD([-Wempty-body]) 4 gl_WARN_ADD([-Wformat-security]) 5 gl_WARN_ADD([-Wignored-qualifiers]) 6 gl_WARN_ADD([-Wimplicit-fallthrough=5]) 7 gl_WARN_ADD([-Winit-self]) 8 gl_WARN_ADD([-Winitializer-overrides]) 9 gl_WARN_ADD([-Wlogical-op]) 10 gl_WARN_ADD([-Wmissing-parameter-type]) 11 gl_WARN_ADD([-Wnested-externs]) [all …]
|
/external/clang/test/CodeGen/ |
D | transparent-union.c | 1 // RUN: %clang_cc1 -Werror -triple x86_64-linux -emit-llvm -o - %s | FileCheck %s 2 // RUN: %clang_cc1 -Werror -triple i386-linux -emit-llvm -o - %s | FileCheck %s 3 // RUN: %clang_cc1 -Werror -triple armv7-linux -emit-llvm -o - %s | FileCheck %s --check-prefix=ARM 4 // RUN: %clang_cc1 -Werror -triple powerpc64le-linux -emit-llvm -o - %s | FileCheck %s 5 // RUN: %clang_cc1 -Werror -triple aarch64-linux -emit-llvm -o - %s | FileCheck %s 13 // CHECK-LABEL: define void @f1_0(i32* %a0) 15 // CHECK: call void %{{.*}}(i8* %{{[a-z0-9]*}}) 18 // ARM-LABEL: define arm_aapcscc void @f1_0(i32* %a0) 20 // ARM: call arm_aapcscc void %{{.*}}(i8* %{{[a-z0-9]*}})
|
D | x86_32-xsave.c | 1 …UN: %clang_cc1 %s -DTEST_XSAVE -O0 -triple=i686-unknown-unknown -target-feature +xsave -emit-llvm … 2 …ng_cc1 %s -DTEST_XSAVE -O0 -triple=i686-unknown-unknown -target-feature +xsave -fno-signed-char -e… 4 … %s -DTEST_XSAVEOPT -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsave… 5 …-DTEST_XSAVEOPT -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaveopt … 7 …c1 %s -DTEST_XSAVEC -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsave… 8 …-DTEST_XSAVEC -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsavec -fno… 10 …c1 %s -DTEST_XSAVES -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsave… 11 …-DTEST_XSAVES -O0 -triple=i686-unknown-unknown -target-feature +xsave -target-feature +xsaves -fno… 18 // XSAVE: [[tmp_vp_1:%[0-9a-zA-z]+]] = load i8*, i8** %tmp_vp, align 4 in test() 19 // XSAVE: [[tmp_ULLi_1:%[0-9a-zA-z]+]] = load i64, i64* %tmp_ULLi, align 8 in test() [all …]
|
/external/harfbuzz_ng/ |
D | .travis.yml | 8 - CPPFLAGS="" 9 - CFLAGS="-Werror -Werror=unused -Werror=unused-function" 10 …- CXXFLAGS="-Werror -Werror=unused -Werror=unused-function -Wno-deprecated-register" # glib uses r… 11 …- CONFIGURE_OPTS="--with-freetype --with-glib --with-gobject --with-cairo --with-icu --with-graphi… 12 - NOCONFIGURE=1 14 …- secure: "k6l/18dpsoPAf0E5RQWCr+rgjbHns0H3k0WzSYovCoVg0B7RVlV8x8OjyEOBzEvXI4aaHRdH6MHCPDFnX4fa7ys… 18 - os: linux 22 …- wget http://download.savannah.gnu.org/releases/freetype/freetype-2.9.tar.bz2 && tar xf freetype-… 23 - export LD_LIBRARY_PATH="$PWD/freetype-2.9/objs/.libs" 25 - ./autogen.sh [all …]
|
/external/clang/test/Preprocessor/ |
D | pr13851.c | 1 // Check that -E -M -MF does not cause an "argument unused" error, by adding 2 // -Werror to the clang invocation. Also check the dependency output, if any. 3 // RUN: %clang -Werror -E -M -MF %t-M.d %s 4 // RUN: FileCheck --input-file=%t-M.d %s 8 // Check that -E -MM -MF does not cause an "argument unused" error, by adding 9 // -Werror to the clang invocation. Also check the dependency output, if any. 10 // RUN: %clang -Werror -E -MM -MF %t-MM.d %s 11 // RUN: FileCheck --input-file=%t-MM.d %s
|
/external/vulkan-validation-layers/build-android/jni/ |
D | Android.mk | 8 # http://www.apache.org/licenses/LICENSE-2.0 16 LOCAL_PATH := $(call my-dir) 32 LOCAL_CPPFLAGS += -std=c++11 -Wall -Werror -Wno-unused-function -Wno-unused-const-variable 33 LOCAL_CPPFLAGS += -DVK_USE_PLATFORM_ANDROID_KHR -DVK_PROTOTYPES -fvisibility=hidden 50 LOCAL_STATIC_LIBRARIES += layer_utils glslang SPIRV-Tools SPIRV-Tools-opt 51 LOCAL_CPPFLAGS += -std=c++11 -Wall -Werror -Wno-unused-function -Wno-unused-const-variable 52 LOCAL_CPPFLAGS += -DVK_USE_PLATFORM_ANDROID_KHR -DVK_PROTOTYPES -fvisibility=hidden -DBUILD_CORE_VA… 53 LOCAL_LDLIBS := -llog -landroid 54 LOCAL_LDFLAGS += -Wl,-Bsymbolic 55 LOCAL_LDFLAGS += -Wl,--exclude-libs,ALL [all …]
|
/external/virglrenderer/ |
D | configure.ac | 6 [virglrenderer-devel@lists.freedesktop.org]) 9 AC_CONFIG_AUX_DIR([build-aux]) 10 AC_CONFIG_MACRO_DIR([build-aux]) 12 AM_INIT_AUTOMAKE([foreign dist-bzip2]) 17 # Support silent build rules, requires at least automake-1.11. Disable 18 # by either passing --disable-silent-rules to configure or passing V=1 26 LT_INIT([disable-static]) 31 AX_CHECK_COMPILE_FLAG([-Wall], [CFLAGS="$CFLAGS -Wall"]) 32 AX_CHECK_COMPILE_FLAG([-Wextra], [CFLAGS="$CFLAGS -Wextra"]) 33 AX_CHECK_COMPILE_FLAG([-Werror=implicit-function-declaration], [CFLAGS="$CFLAGS -Werror=implicit-fu… [all …]
|
/external/pcre/dist2/m4/ |
D | pcre2_visibility.m4 | 1 # 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 …]
|
12345678910>>...37