HomeSort by: relevance | last modified time | path
    Searched refs:pedantic (Results 1 - 25 of 162) sorted by relevancy

1 2 3 4 5 6 7

  /src/external/zlib/pigz/dist/zopfli/
makefile 2 gcc *.c -O2 -W -Wall -Wextra -ansi -pedantic -lm -o zopfli
  /src/external/gpl3/gcc/dist/gcc/c/
c-errors.cc 28 /* Issue an ISO C11 pedantic warning MSGID if -pedantic outside C23 mode,
44 than -pedantic. */
48 (pedantic && !flag_isoc23)
56 /* For -pedantic outside C23, issue a pedwarn. */
57 else if (pedantic && !flag_isoc23)
67 /* Issue an ISO C99 pedantic warning MSGID if -pedantic outside C11 mode,
83 than -pedantic. */
87 (pedantic && !flag_isoc11
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-errors.cc 28 /* Issue an ISO C11 pedantic warning MSGID if -pedantic outside C2X mode,
44 than -pedantic. */
48 (pedantic && !flag_isoc2x)
56 /* For -pedantic outside C2X, issue a pedwarn. */
57 else if (pedantic && !flag_isoc2x)
67 /* Issue an ISO C99 pedantic warning MSGID if -pedantic outside C11 mode,
83 than -pedantic. */
87 (pedantic && !flag_isoc11
    [all...]
  /src/external/gpl3/gcc/dist/libgfortran/runtime/
compile_options.c 153 compile_options.pedantic = options[2];
211 compile_options.pedantic = 0;
error.c 785 if (!compile_options.pedantic)
806 if (!compile_options.pedantic)
  /src/external/gpl3/gcc.old/dist/libgfortran/runtime/
compile_options.c 153 compile_options.pedantic = options[2];
211 compile_options.pedantic = 0;
error.c 785 if (!compile_options.pedantic)
806 if (!compile_options.pedantic)
  /src/crypto/external/bsd/libsaslc/dist/src/
Makefile 4 CFLAGS=-I../include -Wall -pedantic -std=c99 -fPIC -ggdb
  /src/external/bsd/pcc/dist/pcc/driver/
driver.h 70 int pedantic; member in struct:options
options.c 130 { "pedantic", FLAG, opt_set, &opt.pedantic },
  /src/crypto/external/apache2/openssl/dist/apps/
fipsinstall.c 86 { "pedantic", OPT_PEDANTIC, '-', "Set options for strict FIPS compliance" },
202 /* Pedantic FIPS compliance */
270 static int check_non_pedantic_fips(int pedantic, const char *name)
272 if (pedantic) {
273 BIO_printf(bio_err, "Cannot specify -%s after -pedantic\n", name);
619 int ret = 1, verify = 0, gotkey = 0, gotdigest = 0, pedantic = 0; local
662 pedantic = 1;
665 if (!check_non_pedantic_fips(pedantic, "no_conditional_errors"))
670 if (!check_non_pedantic_fips(pedantic, "no_security_checks"))
750 if (!check_non_pedantic_fips(pedantic, "no_pbkdf2_lower_bound_check")
    [all...]
  /src/external/gpl2/mkhybrid/dist/libhfs_iso/
Makefile 28 COPTS = -g -Wall -pedantic
  /src/external/bsd/zstd/dist/zlibWrapper/
Makefile 26 STDFLAGS = -std=c89 -pedantic -Wno-long-long -Wno-variadic-macros -Wc++-compat \
  /src/external/historical/nawk/dist/
makefile 32 #CC = cc -O4 -Wall -pedantic -fno-strict-aliasing
34 HOSTCC = cc -g -Wall -pedantic -Wcast-qual
35 # HOSTCC = g++ -g -Wall -pedantic -Wcast-qual
  /src/external/gpl3/gcc/dist/gcc/fortran/
options.cc 421 /* If -pedantic, warn about the use of GNU extensions. */
422 if (pedantic && (gfc_option.allow_std & GFC_STD_GNU) != 0)
424 /* -std=legacy -pedantic is effectively -std=gnu. */
425 if (pedantic && (gfc_option.allow_std & GFC_STD_LEGACY) != 0)
scanner.cc 1386 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1615 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1866 if (pedantic)
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
options.cc 407 /* If -pedantic, warn about the use of GNU extensions. */
408 if (pedantic && (gfc_option.allow_std & GFC_STD_GNU) != 0)
410 /* -std=legacy -pedantic is effectively -std=gnu. */
411 if (pedantic && (gfc_option.allow_std & GFC_STD_LEGACY) != 0)
scanner.cc 1382 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1611 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1862 if (pedantic)
  /src/usr.bin/make/
test-variants.mk 122 CFLAGS.c90-plain= -std=c90 -ansi -pedantic -Wno-system-headers
131 CFLAGS.c90-stdbool= -std=c90 -ansi -pedantic -Wno-system-headers
  /src/external/bsd/zstd/dist/contrib/pzstd/
Makefile 29 CXXFLAGS ?= -O3 -Wall -Wextra -pedantic
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-cppbuiltin.cc 966 if (!pedantic || cxx_dialect > cxx11)
970 if (!pedantic || cpp_get_options (parse_in)->extended_numbers)
978 && (pedantic ? warn_vla == 0 : warn_vla <= 0))
c-format.cc 399 /* The C standard version we are checking formats against when pedantic. */
408 pedantic. FEATURE_VER is the version in which the feature warned out
451 pedantic, rather than just the character or void type specified. */
551 /* All tables for strfmon use STD_C89 everywhere, since -pedantic warnings
1407 if (pedantic && !dollar_format_warned)
2083 if (pedantic)
2543 if (pedantic)
2610 if (pedantic)
2763 else if (pedantic
4246 && pedantic
    [all...]
c-lex.cc 551 /* If -pedantic-errors is given, __has_extension is equivalent to
1243 if (pedantic && !flag_isoc23)
1252 else if (warn_c11_c23_compat != 0 && pedantic && !flag_isoc23)
  /src/external/gpl3/gcc.old/dist/gcc/c-family/
c-cppbuiltin.cc 970 if (!pedantic || cxx_dialect > cxx11)
974 if (!pedantic || cpp_get_options (parse_in)->extended_numbers)
982 && (pedantic ? warn_vla == 0 : warn_vla <= 0))
c-format.cc 404 /* The C standard version we are checking formats against when pedantic. */
413 pedantic. FEATURE_VER is the version in which the feature warned out
456 pedantic, rather than just the character or void type specified. */
538 /* All tables for strfmon use STD_C89 everywhere, since -pedantic warnings
1363 if (pedantic && !dollar_format_warned)
2039 if (pedantic)
2499 if (pedantic)
2566 if (pedantic)
2719 else if (pedantic
4202 && pedantic
    [all...]

Completed in 36 milliseconds

1 2 3 4 5 6 7