/freebsd/contrib/googletest/ |
H A D | BUILD.bazel | 81 hdrs = ["googletest/include/gtest/gtest_prod.h"], 82 includes = ["googletest/include"], 89 include = [ 90 "googletest/src/*.cc", 92 "googletest/include/gtest/**/*.h", 93 "googlemock/src/*.cc", 94 "googlemock/include/gmock/**/*.h", 97 "googletest/src/gtest-all.cc", 98 "googletest/src/gtest_main.cc", 99 "googlemock/src/gmock-all.cc", [all …]
|
/freebsd/contrib/unbound/ |
H A D | acx_nlnetlabs.m4 | 68 # ACX_CHECK_COMPILER_FLAG - see if cc supports a flag. 71 # ACX_DEPFLAG - find cc dependency flags. 73 # ACX_CHECK_FORMAT_ATTRIBUTE - find cc printf format syntax. 74 # ACX_CHECK_UNUSED_ATTRIBUTE - find cc variable unused syntax. 75 # ACX_CHECK_FLTO - see if cc supports -flto and use it if so. 267 #include "confdefs.h" 268 #include <stdlib.h> 269 #include <ctype.h> 270 #include <sys/time.h> 272 #include <time.h> [all …]
|
H A D | ax_pthread.m4 | 173 # From the cc(1) man page: "[-mt] Sets various -D flags to enable 306 # Check for various functions. We must include pthread.h, 316 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h> 349 # Clang needs special handling, because older versions handle the -pthread 385 …AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -p… 434 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>], 466 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>]], 486 … [x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
H A D | configure.ac | 283 # Check for 'grep -e' program, here, since ACX_CHECK_FLTO needs that. 333 AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "weak" attribute) 336 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> 356 AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "noreturn" attribute) 359 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> 379 AC_MSG_CHECKING(whether the C compiler (${CC-cc}) accepts the "fallthrough" attribute) 384 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include <stdio.h> 476 #include <stdio.h> 478 # include <stdlib.h> 479 # include <stddef.h> [all …]
|
/freebsd/contrib/tcsh/ |
H A D | Ported | 12 COMPILER: cc, gcc, acc 18 NOTES : Don't compile with /usr/5bin/cc 23 COMPILER: cc, gcc 39 COMPILER: WorkShop cc 50 COMPILER: Sun Studio cc 61 COMPILER: cc, gcc 83 COMPILER: cc 94 COMPILER: cc, gcc 107 COMPILER: cc, c89, gcc 108 CFLAGS : +O3 -Aa (cc), +O3 (c89), normal (gcc) [all …]
|
/freebsd/contrib/googletest/docs/ |
H A D | pkgconfig.md | 15 `samples/sample3_unittest.cc`. 26 target_sources(testapp PRIVATE samples/sample3_unittest.cc) 39 splitting the pkg-config `Cflags` variable into include dirs and macros for 94 reasons why this stripping needs to occur usually). 100 includedir=/usr/include 117 -DGTEST_HAS_PTHREAD=1 -lpthread -I/usr/include 137 -DGTEST_HAS_PTHREAD=1 -lpthread -I/home/MYUSER/sysroot/usr/include
|
H A D | faq.md | 54 implementation needs to change in the future. 174 you also need to define it *outside* of the class body in `foo.cc`: 186 implicitly an `inline` definition, and a separate definition in `foo.cc` is not 193 static constexpr int kBar = 100; // Defines kBar, no need to do it in foo.cc. 249 [sample5_unittest.cc](https://github.com/google/googletest/blob/main/googletest/samples/sample5_uni… 354 This is **wrong and dangerous**. The testing services needs to see the return 441 1. It's likely your test needs to change the states of its global variables. 502 GoogleTest needs to be able to create objects of your test fixture class, so it 531 suite, and so on. GoogleTest does this because it needs to set up a test suite 547 Since `FooTest.AbcDeathTest` needs to run before `BarTest.Xyz`, and we don't [all …]
|
H A D | advanced.md | 363 #include <ostream> 693 path/to/foo_test.cc:11: Failure 698 path/to/foo_test.cc:17: A 700 path/to/foo_test.cc:12: Failure 875 > needs to be prefixed with `::testing::Test::` if used outside of the 1187 You can see [sample7_unittest.cc] and [sample8_unittest.cc] for more examples. 1189 [sample7_unittest.cc]: https://github.com/google/googletest/blob/main/googletest/samples/sample7_un… 1190 [sample8_unittest.cc]: https://github.com/google/googletest/blob/main/googletest/samples/sample8_un… 1208 2. Put the `TEST_P` definitions in `foo_param_test.cc`, which includes 1213 contains `foo_param_test.cc`. You can instantiate the same abstract test suite [all …]
|
/freebsd/contrib/ldns/ |
H A D | acx_nlnetlabs.m4 | 59 # ACX_CHECK_COMPILER_FLAG - see if cc supports a flag. 62 # ACX_DEPFLAG - find cc dependency flags. 64 # ACX_CHECK_FORMAT_ATTRIBUTE - find cc printf format syntax. 65 # ACX_CHECK_UNUSED_ATTRIBUTE - find cc variable unused syntax. 66 # ACX_CHECK_FLTO - see if cc supports -flto and use it if so. 258 #include "confdefs.h" 259 #include <stdlib.h> 260 #include <ctype.h> 261 #include <sys/time.h> 263 #include <time.h> [all …]
|
/freebsd/contrib/bearssl/src/ssl/ |
H A D | ssl_hs_common.t0 | 29 #include <stddef.h> 30 #include <string.h> 32 #include "inner.h" 61 \ The handshake processor needs to defer back to the caller ('co') only 83 cc: DBG ( addr -- ) { 91 cc: DBG2 ( addr x -- ) { 101 cc: fail ( err -- ! ) { 107 cc: get8 ( addr -- val ) { 113 cc: get16 ( addr -- val ) { 119 cc: get32 ( addr -- val ) { [all …]
|
/freebsd/crypto/openssh/ |
H A D | README.platform | 40 than the default of cc. 66 Some Linux distributions (including Red Hat/Fedora/CentOS) include 78 for praudit(1m) to give sensible output. The following line needs to be
|
/freebsd/contrib/googletest/googletest/cmake/ |
H A D | internal_utils.cmake | 15 # Tweaks CMake's default compiler/linker settings to suit Google Test's needs. 243 # from the given source files. dir/name.cc is implicitly included in 247 ${name} "${cxx_default}" "${libs}" "${dir}/${name}.cc" ${ARGN}) 267 # test/name.cc is already implicitly included in the source file list. 270 "test/${name}.cc" ${ARGN}) 301 install(DIRECTORY "${PROJECT_SOURCE_DIR}/include/"
|
/freebsd/crypto/openssl/Configurations/ |
H A D | README.md | 65 cc => The C compiler command, usually one of "cc", 341 "target" => "{cc}:{cflags}:{unistd}:{thread_cflag}:{sys_id}:{lflags}: 354 simple and yet fairly powerful language to determine what needs to be 414 In some cases, it's desirable to include some source files in the 420 include paths the build of their source files should use: 422 INCLUDE[foo]=include 447 but an inclusion directory still needs to be specified. INCLUDE can 486 To use the "unified" build system, the target configuration needs to 532 are include directories and files that the generator 534 include directories and files that are used if $(CC) [all …]
|
/freebsd/sys/contrib/libsodium/m4/ |
H A D | ax_pthread.m4 | 165 # From the cc(1) man page: "[-mt] Sets various -D flags to enable 247 # Clang needs special handling, because older versions handle the -pthread 288 …AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -p… 360 # Check for various functions. We must include pthread.h, 370 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h> 408 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>], 440 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>]], 459 … [x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
/freebsd/usr.bin/indent/ |
H A D | README | 4 hacked upon by James Gosling @ CMU. It isn't very pretty, and really needs 50 | indent was in the public domain. They wanted to include it in their 95 cc: ccvaxa!willcox
|
/freebsd/libexec/bootpd/ |
H A D | Changes | 101 Fix setarp for SVR4 (needs to use I_STR ioctl) 108 Make option string lengths not include a null terminator. 191 Moved #include <net/if.h> out of #ifdef SUNOS 221 (this needs to be a per-client option). 256 01/27/93 <fdc@watsun.cc.columbia.edu> Frank da Cruz
|
/freebsd/crypto/krb5/src/config/ac-archive/ |
H A D | ax_pthread.m4 | 173 # From the cc(1) man page: "[-mt] Sets various -D flags to enable 306 # Check for various functions. We must include pthread.h, 316 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h> 349 # Clang needs special handling, because older versions handle the -pthread 385 …AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -p… 434 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>], 466 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>]], 486 … [x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | openldap-thread-check.m4 | 59 AC_CHECK_PROGS(CC,cc_r xlc_r cc) 61 if test "$CC" = cc ; then 249 #include <pthread.h> 264 #include <pthread.h> 323 #include <sys/types.h> 324 #include <sys/time.h> 325 #include <unistd.h> 326 #include <pthread.h> 432 dnl this test needs work 438 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <mach/cthreads.h>]], [[ [all …]
|
/freebsd/crypto/krb5/src/config/ |
H A D | pre.in | 177 KRB_INCLUDES = -I$(BUILDTOP)/include -I$(top_srcdir)/include 288 # prefix (with no spaces after) for rpath flag to cc 339 COM_ERR_DEPS-k5 = $(BUILDTOP)/include/com_err.h 343 SS_DEPS-k5 = $(BUILDTOP)/include/ss/ss.h $(BUILDTOP)/include/ss/ss_err.h 347 VERTO_DEPS-k5 = $(BUILDTOP)/include/verto.h 383 # needs fixing if ever used on macOS! 546 # File that needs to be current for building the shared library,
|
/freebsd/contrib/file/ |
H A D | INSTALL | 145 `/usr/local/bin', include files under `/usr/local/include', etc. You 207 find the X include and library files automatically, but if it doesn't, 225 ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" 234 ./configure CC="cc" 238 ./configure CC="cc -nodtk" 254 automatically, but needs to determine by the type of machine the package
|
/freebsd/contrib/ntp/ |
H A D | CommitLog-4.1.0 | 25 * ntp_update: COPYRIGHT needs a touch. 56 * include/ntp_config.h: includefile config keyword support 74 * include/ntp.h (RES_ALLFLAGS): Add RES_DEMOBILIZE. 107 Reported by jrd@cc.usu.edu (Joe Doupnik) 113 * include/ntp_refclock.h: Median Filter (SAMPLE - macro) - change 136 * configure.in (ac_cv_func_ctty_for_f_setown): BSDI3 needs a ctty 170 * include/ntp_syscall.h (ntp_gettime): Updated patch from Ulrich. 175 * include/ntp_syscall.h (ntp_gettime): Fill in the tai member. 215 * include/ntpd.h: huffpuff() declaration. 216 * include/ntp_config.h (CONF_CLOCK_HUFFPUFF): Added. [all …]
|
/freebsd/share/mk/ |
H A D | bsd.README | 2 This is the README file for the "include" files for the FreeBSD 10 There are two main types of make include files. One type is the generally 11 usable make include files, such as bsd.prog.mk and bsd.lib.mk. The other is 12 the internal make include files, such as bsd.files.mk and bsd.man.mk, which 13 can not/should not be used directly but are used by the other make include 14 files. In most cases it is only interesting to include bsd.prog.mk or 29 bsd.incs.mk - install of include files 31 bsd.init.mk - initialization for the make include files 67 include files. For more examples look at the makefiles in the FreeBSD 74 The files are like C-style #include files, and pretty much behave like [all …]
|
/freebsd/contrib/bmake/mk/ |
H A D | mk-files.txt | 36 Library makefiles include ``lib.mk`` and programs include ``prog.mk`` 48 .include <lib.mk> 56 .include <prog.mk> 227 include ``*.libnames.mk`` of which: 264 # indicate that we need to include headers from LIBCRYPTO 330 tree. If ``MK_AUTO_OBJ`` is set we include auto.obj.mk_. 333 ``MK_AUTO_OBJ=yes`` and include auto.obj.mk_ since it is best done early. 342 early - before bmake has established ``.PATH``, thus we include it 384 SYMLINKS += ${.CURDIR}/${MACHINE_ARCH}/include machine 390 ``${.CURDIR}/${MACHINE_ARCH}/include`` before compiling ``md.o`` [all …]
|
/freebsd/contrib/ntp/html/hints/ |
H A D | a-ux | 12 distribution; the native cc supplied with A/UX will NOT correctly compile 125 'xntpd'... so it also needs to be adjusted. I like using larger 186 include/ntp_machine.h for SYS_AUX3. It's also for this reason than
|
/freebsd/contrib/mandoc/ |
H A D | configure.local.example | 31 # By default, "cc" is used as the C compiler, but it can be overridden. 64 # For -Tutf8 mode, mandoc needs to set an arbitrary locale having 183 # your system but it needs different linker flags, set the following 256 INCLUDEDIR="${PREFIX}/include/mandoc"
|