Home
last modified time | relevance | path

Searched +full:- +full:wdeclaration +full:- +full:after +full:- +full:statement (Results 1 – 25 of 31) sorted by relevance

12

/external/cn-cbor/
DSimple-Makefile2 #CFLAGS = -I /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/…
3-Os -Wall -Wextra -Wno-unknown-pragmas -Werror-implicit-function-declaration -Werror -Wno-unused-p…
9 -diff new.out test/expected.out
11 cntest: src/cbor.h include/cn-cbor/cn-cbor.h src/cn-cbor.c src/cn-error.c src/cn-get.c test/test.c
12 clang $(CFLAGS) src/cn-cbor.c src/cn-error.c src/cn-get.c test/test.c -o cntest
14 size: cn-cbor.o
15 size cn-cbor.o
16 size -m cn-cbor.o
18 cn-cbor.o: src/cn-cbor.c include/cn-cbor/cn-cbor.h src/cbor.h
19 clang $(CFLAGS) -c src/cn-cbor.c
[all …]
/external/curl/
DAndroid.bp4 "-Wpointer-arith",
5 "-Wwrite-strings",
6 "-Wunused",
7 "-Winline",
8 "-Wnested-externs",
9 "-Wmissing-declarations",
10 "-Wmissing-prototypes",
11 "-Wno-long-long",
12 "-Wfloat-equal",
13 "-Wno-multichar",
[all …]
DCMakeLists.txt8 # Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
33 # - lists of headers that 'configure' checks for;
34 # - curl-specific tests (the ones that are in m4/curl-*.m4 files);
35 # - (most obvious thing:) curl version numbers.
39 # (From Daniel Stenberg) The cmake build selected to run gcc with -fPIC on my box while the plain c…
40 …he gcc command line use neither -g nor any -O options. As a developer, I also treasure our configu…
56 string(REGEX MATCH "#define LIBCURL_VERSION_NUM 0x[0-9a-fA-F]+"
62 # Setup package meta-data
67 # SET(PACKAGE_VERSION "-")
68 # SET(PACKAGE_STRING "curl-")
[all …]
/external/adhd/defs/
Dc.mk2 # Use of this source code is governed by a BSD-style license that can be
9 -g \
10 -O2 \
11 -funit-at-a-time
15 # -Wframe-larger-than=256
16 # -Wlarger-than=4096
17 # -Wsync-nand
21 -ffunction-sections \
22 -fdata-sections
25 -pthread
[all …]
/external/ImageMagick/
D.travis.yml7 - clang
8 - gcc
11 - sudo add-apt-repository -y ppa:as-bahanta/raqm
12 - sudo add-apt-repository ppa:dns/gnu -y
13 - sudo apt-key update -q
14 - sudo apt-get update -q
15 - sudo apt-get install --only-upgrade autoconf
16 - sudo apt-get install -y libraqm-dev libfreetype6-dev libharfbuzz-dev libfribidi-dev
19 set -e
20 set -x
[all …]
/external/lz4/lib/dll/example/
DMakefile2 # LZ4 programs - Makefile
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 # - LZ4 homepage : http://www.lz4.org
23 # - LZ4 source repository : https://github.com/lz4/lz4
31 CFLAGS ?= -O3 # can select custom flags. For example : CFLAGS="-O2 -g" make
32 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow -Wswitch-enum \
33 -Wdeclaration-after-statement -Wstrict-prototypes \
34 -Wpointer-arith -Wstrict-aliasing=1
36 CPPFLAGS:= -I$(LZ4DIR) -DXXH_NAMESPACE=LZ4_
47 .PHONY: default fullbench-dll fullbench-lib
[all …]
/external/libdaemon/
Dconfigure.ac1 # -*- Autoconf -*-
6 # Copyright 2003-2008 Lennart Poettering
33 AM_INIT_AUTOMAKE([foreign 1.10 -Wall])
39 if type -p stow > /dev/null && test -d /usr/local/stow ; then
40 …sr/local/stow: default install prefix set to /usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION} **…
41 ac_default_prefix="/usr/local/stow/${PACKAGE_NAME}-${PACKAGE_VERSION}"
58-pipe -Wall -W -Wextra -pedantic -Wformat -Wold-style-definition -Wdeclaration-after-statement -Wf…
89 AS_HELP_STRING([--disable-examples], [Don't build examples during make]),,
93 …html doc/doxygen.conf examples/Makefile pkgconfig/libdaemon.pc pkgconfig/libdaemon-uninstalled.pc])
/external/lz4/contrib/cmake_unofficial/
DCMakeLists.txt18 …LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MAJOR REGEX "^#define LZ4_VERSION_MAJOR +([0-9]+) +.*$")
19 string(REGEX REPLACE "^#define LZ4_VERSION_MAJOR +([0-9]+) +.*$" "\\1" LZ4_VERSION_MAJOR "${LZ4_VER…
20 …LZ4_TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_MINOR REGEX "^#define LZ4_VERSION_MINOR +([0-9]+) +.*$")
21 string(REGEX REPLACE "^#define LZ4_VERSION_MINOR +([0-9]+) +.*$" "\\1" LZ4_VERSION_MINOR "${LZ4_VER…
22 …TOP_SOURCE_DIR}/lib/lz4.h" LZ4_VERSION_RELEASE REGEX "^#define LZ4_VERSION_RELEASE +([0-9]+) +.*$")
23 string(REGEX REPLACE "^#define LZ4_VERSION_RELEASE +([0-9]+) +.*$" "\\1" LZ4_VERSION_RELEASE "${LZ4…
45 # depending on whether or not we are the top-level project.
143 # GCC-style
144 -Wall
145 -Wextra
[all …]
/external/lz4/programs/
DMakefile2 # LZ4 programs - Makefile
3 # Copyright (C) Yann Collet 2011-2017
21 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 # - LZ4 homepage : http://www.lz4.org
25 # - LZ4 source repository : https://github.com/Cyan4973/lz4
27 # lz4 : Command Line Utility, supporting gzip-like arguments
29 # lz4c32: Same as lz4c, but forced to compile in 32-bits mode
35 LIBVER_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(…
36 LIBVER_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < $(…
37 LIBVER_PATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < …
[all …]
/external/lz4/lib/
DMakefile2 # LZ4 library - Makefile
3 # Copyright (C) Yann Collet 2011-2016
31 # - LZ4 source repository : https://github.com/Cyan4973/lz4
32 # - LZ4 forum froup : https://groups.google.com/forum/#!forum/lz4c
36 LIBVER_MAJOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MAJOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./…
37 LIBVER_MINOR_SCRIPT:=`sed -n '/define LZ4_VERSION_MINOR/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < ./…
38 LIBVER_PATCH_SCRIPT:=`sed -n '/define LZ4_VERSION_RELEASE/s/.*[[:blank:]]\([0-9][0-9]*\).*/\1/p' < …
49 CPPFLAGS+= -DXXH_NAMESPACE=LZ4_
50 CFLAGS ?= -O3
51 DEBUGFLAGS:= -Wall -Wextra -Wcast-qual -Wcast-align -Wshadow \
[all …]
/external/libdrm/
Dmeson.build1 # Copyright © 2017-2018 Intel Corporation
35 with_freedreno_kgsl = get_option('freedreno-kgsl')
36 with_install_tests = get_option('install-test-programs')
39 dep_pthread_stubs = dependency('pthread-stubs', version : '>= 0.4')
174 # clock_gettime might require -rt, or it might not. find out
194 foreach a : ['-Wall', '-Wextra', '-Wsign-compare', '-Werror=undef',
195 '-Werror-implicit-function-declaration', '-Wpointer-arith',
196 '-Wwrite-strings', '-Wstrict-prototypes', '-Wmissing-prototypes',
197 '-Wmissing-declarations', '-Wnested-externs', '-Wpacked',
198 '-Wswitch-enum', '-Wmissing-format-attribute',
[all …]
Dconfigure.ac16 # FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
30 AC_CONFIG_AUX_DIR([build-aux])
33 # Require xorg-macros minimum of 1.12 for XORG_WITH_XSLTPROC
35 [m4_fatal([must install xorg-macros 1.12 or later before running autoconf/autogen])])
40 AM_INIT_AUTOMAKE([1.10 foreign dist-bzip2])
59 export CFLAGS="$CFLAGS -Werror"
67 LT_INIT([disable-static])
69 dnl pthread-stubs is mandatory on some BSD platforms, due to the nature of the
72 linux* | cygwin* | darwin* | solaris* | *-gnu* | gnu* | openbsd*)
81 PKG_CHECK_MODULES(PTHREADSTUBS, pthread-stubs >= 0.4)
[all …]
/external/kmod/
Dconfigure.ac4 [linux-modules@vger.kernel.org],
11 AC_CONFIG_AUX_DIR([build-aux])
17 AM_INIT_AUTOMAKE([check-news foreign 1.11 silent-rules tar-pax no-dist-gzip dist-xz subdir-objects …
19 LT_INIT([disable-static pic-only])
22 AS_IF([test "x$enable_static" = "xyes"], [AC_MSG_ERROR([--enable-static is not supported by kmod])])
23 AS_IF([test "x$enable_largefile" = "xno"], [AC_MSG_ERROR([--disable-largefile is not supported by k…
79 # --with-
83 AS_HELP_STRING([--with-rootlibdir=DIR], [rootfs directory to install shared libraries]),
88 AS_HELP_STRING([--with-xz], [handle Xz-compressed modules @<:@default=disabled@:>@]),
99 AS_HELP_STRING([--with-zlib], [handle gzipped modules @<:@default=disabled@:>@]),
[all …]
/external/libvpx/libvpx/
Dconfigure5 ## This script is the front-end to the build system. It provides a similar
30 --cpu=CPU tune for the specified CPU (ARM: cortex-a8, X86: sse3)
31 --libc=PATH path to alternate libc
32 --size-limit=WxH max size to allow in the decoder
33 --as={yasm|nasm|auto} use specified assembler [auto, yasm preferred]
34 --sdk-path=PATH path to root of sdk (android builds only)
49 ${toggle_realtime_only} enable this option while building for real-time encoding
50 ${toggle_onthefly_bitpacking} enable on-the-fly bitpacking in real-time encoding
60 ${toggle_multi_res_encoding} enable multiple-resolution encoding
69 --disable-<codec>
[all …]
/external/curl/m4/
Dcurl-compilers.m48 # Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
28 dnl -------------------------------------------------
69 *** mailing list: https://cool.haxx.se/mailman/listinfo/curl-library/
77 dnl -------------------------------------------------
89 dnl IBM's almost-compatible clang version
96 fullclangver=`$CC -v 2>&1 | grep version`
97 …clangver | grep "based on LLVM " | "$SED" 's/.*(based on LLVM \(@<:@0-9@:>@*\.@<:@0-9@:>@*\).*)/\1…
98 if test -z "$clangver"; then
103 clangver=`echo $fullclangver | "$SED" 's/.*version \(@<:@0-9@:>@*\.@<:@0-9@:>@*\).*/\1/'`
106 clangvhi=`echo $clangver | cut -d . -f1`
[all …]
/external/libpcap/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
3 # Generated by GNU Autoconf 2.69 for pcap 1.9.0-PRE-GIT.
6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
11 ## -------------------- ##
13 ## -------------------- ##
17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
22 alias -g '${1+"$@"}'='"$@"'
25 case `(set -o) 2>/dev/null` in #(
27 set -o posix ;; #(
[all …]
Daclocal.m444 AC_ARG_WITH(gcc, [ --without-gcc don't use gcc])
47 $1="-I\$(srcdir)"
52 if test -z "$CC" ; then
64 if test -z "$CC" -a "$with_gcc" = no ; then
75 dnl use -O (AC_PROG_CC will use -g -O2 on gcc, so we don't need to
77 dnl add -g flags, as appropriate
102 # -Werror forces warnings to be errors.
104 ac_lbl_cc_force_warning_errors=-Werror
111 AC_LBL_CHECK_COMPILER_OPT($1, -fvisibility=hidden)
113 $2="$$2 -I/usr/local/include"
[all …]
DCMakeLists.txt18 # At minimum, we want C++/C99-style // comments.
25 # ourselves on pre-3.1 CMake, so we just do it ourselves on all versions
39 # We don't worry about MSVC; it doesn't have such a flag - either it
43 # XXX - this just tests whether the option works and adds it if it does.
52 string(REPLACE "=" "-" _temp_option_variable ${_option})
53 string(REGEX REPLACE "^-" "" _option_variable ${_temp_option_variable})
63 check_and_add_compiler_option("-std=gnu99")
67 # so we use -qlanglvl=extc99.
69 check_and_add_compiler_option("-qlanglvl=extc99")
71 check_and_add_compiler_option("-AC99")
[all …]
/external/tcpdump/
Dconfigure2 # Guess values for system-dependent variables and create Makefiles.
6 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
11 ## -------------------- ##
13 ## -------------------- ##
17 if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then :
20 # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which
22 alias -g '${1+"$@"}'='"$@"'
25 case `(set -o) 2>/dev/null` in #(
27 set -o posix ;; #(
43 if test -z "$BASH_VERSION$ZSH_VERSION" \
[all …]
Daclocal.m444 AC_ARG_WITH(gcc, [ --without-gcc don't use gcc])
47 $1="-I$srcdir"
52 if test -z "$CC" ; then
64 if test -z "$CC" -a "$with_gcc" = no ; then
75 dnl use -O (AC_PROG_CC will use -g -O2 on gcc, so we don't need to
77 dnl add -g flags, as appropriate
102 # -Werror forces warnings to be errors.
104 ac_lbl_cc_force_warning_errors=-Werror
107 # Use -ffloat-store so that, on 32-bit x86, we don't
108 # do 80-bit arithmetic with the FPU; that way we should
[all …]
/external/lz4/tests/
DMakefile2 # LZ4 programs - Makefile
3 # Copyright (C) Yann Collet 2011-present
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 # - LZ4 homepage : http://www.lz4.org
23 # - LZ4 source repository : https://github.com/lz4/lz4
37 DEBUGFLAGS = -g -DLZ4_DEBUG=$(DEBUGLEVEL)
38 CFLAGS ?= -O3 # can select custom optimization flags. For example : CFLAGS=-O2 make
39 CFLAGS += -Wall -Wextra -Wundef -Wcast-qual -Wcast-align -Wshadow \
40 -Wswitch-enum -Wdeclaration-after-statement -Wstrict-prototypes \
41 -Wpointer-arith -Wstrict-aliasing=1
[all …]
/external/libevent/
Dconfigure.ac1 dnl Copyright 2000-2007 Niels Provos
2 dnl Copyright 2007-2012 Niels Provos and Nick Mathewson
8 AC_INIT(libevent,2.1.8-stable)
16 AC_CONFIG_HEADERS(config.h evconfig-private.h:evconfig-private.h.in)
41 # CFLAGS="$CFLAGS -D_OSF_SOURCE"
49 # AC_PROG_MKDIR_P - $(MKDIR_P) should be defined by AM_INIT_AUTOMAKE
60 # have -fno-strict-aliasing
68 CFLAGS="$CFLAGS -Wall"
69 # And disable the strict-aliasing optimization, since it breaks
70 # our sockaddr-handling code in strange ways.
[all …]
DChangeLog1 Changes in version 2.1.8-stable (22 January 2017)
3 Libevent 2.1.8-stable, it contains openssl fixes for resetting fd and using
12 o util-internal: fix __func__ redefinition (netbsd) (253e7fa9 Azat Khuzhin)
15 o http: fix formatter for pritnf for req->ntoread (osx) (1cbf26f6 Azat Khuzhin)
17 o Merge branch 'automake-tests-parallel-v4' (*includes ci bits also*) (59e217df Azat Khuzhin)
26 o test/dns: run async resolving after sync one (to avoid timeouts) (07862531 Azat Khuzhin)
29 o Merge branch 'openssl-filter-fixes-v4' (83e0f43b Azat Khuzhin)
30 o Merge branch 'date-rfc1123' (68def435,4798de6c,4545807d Azat Khuzhin)
31 o Merge branch 'be-openssl-fd-reset-fix-v2' (86fa0070,32adf434 Azat Khuzhin)
32 o Merge branch 'openssl-1.1-init-fixes-v2' (18a161f0 Azat Khuzhin)
[all …]
/external/mdnsresponder/mDNSPosix/
DMakefile1 # -*- tab-width: 4 -*-
3 # Copyright (c) 2002-2004, Apple Computer, Inc. All rights reserved.
47 # <http://www.gnu.org/software/make/manual/html_node/Automatic-Variables.html>
60 LD = ld -shared
63 LN = ln -s -f
64 CFLAGS_COMMON = -I$(COREDIR) -I$(SHAREDDIR) -I$(OBJDIR) -fwrapv -W -Wall -DPID_FILE=\"/var/run/mdns…
67 LINKOPTS_PTHREAD = -lpthread
69 JAVACFLAGS_OS = -fPIC -shared -ldns_sd
74 CFLAGS_DEBUG = -g -DMDNS_DEBUGMSGS=2
79 # We use -Os for two reasons:
[all …]
/external/libxkbcommon/xkbcommon/build-aux/
Dtraces.21 m4trace:/usr/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
20 dnl libltdl-supplied implementation (and default to do so
25 dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
28 AS_IF([test -z "$ARGZ_H"],
38 lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
40 IFS=-.
41 set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
43 lt_os_major=${2-0}
44 lt_os_minor=${3-0}
45 lt_os_micro=${4-0}
[all …]

12