| /freebsd-14.2/contrib/llvm-project/lld/docs/ |
| H A D | WebAssembly.rst | 72 .. option:: --allow-undefined 74 Allow undefined symbols in linked binary. This is the legacy 76 ``--import-undefined``. 78 .. option:: --allow-undefined-file=<filename> 80 Like ``--allow-undefined``, but the filename specified a flat list of 81 symbols, one per line, which are allowed to be undefined. 85 This is a more full featured version of ``--allow-undefined``. 98 trapping stub function in place of the undefined function. 119 .. option:: --import-undefined 199 they are expected to be undefined at static link time. [all …]
|
| H A D | missingkeyfunction.rst | 6 foo.cc:28: error: undefined reference to 'vtable for C' 7 the vtable symbol may be undefined because the class is missing its key function 16 function calls your missing function, you won't see any undefined reference errors 17 for it, but you will see undefined references to the vtable symbol. 42 not emit the vtable for ``B``, and you'll get an undefined reference to "vtable 49 you won't see any undefined reference errors that point directly to the problem.
|
| H A D | error_handling_script.rst | 30 - ``undefined-symbol``: indicates that given symbol is marked as undefined. The 32 ``error-handling-script undefined-symbol mysymbol``
|
| /freebsd-14.2/share/mk/ |
| H A D | bsd.sanitizer.mk | 19 SANITIZER_CFLAGS+= -fsanitize=undefined 20 SANITIZER_CFLAGS+= -fsanitize-recover=undefined 21 SANITIZER_LDFLAGS+= -fsanitize=undefined 38 LDFLAGS:= ${LDFLAGS:N-Wl,-no-undefined:N-Wl,--no-undefined}
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | cmdline-undefined.mk | 12 @${.MAKE} -f ${MAKEFILE} print-undefined \ 20 @${.MAKE} -f ${MAKEFILE} print-undefined \ 24 .if make(print-undefined) 51 print-undefined:
|
| H A D | cond-undef-lint.exp | 1 make: "cond-undef-lint.mk" line 25: Variable "UNDEF" is undefined 3 make: "cond-undef-lint.mk" line 43: Variable "UNDEF" is undefined 4 make: "cond-undef-lint.mk" line 43: Variable "VAR." is undefined 6 make: "cond-undef-lint.mk" line 56: Variable "VAR.defined" is undefined
|
| H A D | cmd-errors-lint.mk | 8 all: undefined unclosed-variable unclosed-modifier unknown-modifier end 11 undefined:
|
| H A D | cmd-errors.mk | 6 all: undefined unclosed-variable unclosed-modifier unknown-modifier end 9 undefined:
|
| H A D | cmd-errors-jobs.mk | 8 all: undefined unclosed-variable unclosed-modifier unknown-modifier end 11 undefined:
|
| H A D | opt-debug-lint.exp | 1 make: "opt-debug-lint.mk" line 21: Variable "X" is undefined 3 make: "opt-debug-lint.mk" line 45: Variable "UNDEF" is undefined
|
| H A D | cond-op.mk | 75 .if ${ERR:Uundefined} == undefined 85 .if ${ERR:Uundefined} == undefined
|
| H A D | directive-include-guard.mk | 246 INCS+= variable-defined-then-undefined 247 LINES.variable-defined-then-undefined= \ 251 UNDEF_BETWEEN.variable-defined-then-undefined= \
|
| /freebsd-14.2/sys/contrib/openzfs/config/ |
| H A D | always-compiler-options.m4 | 49 dnl # Enabled -fsanitize=undefined if supported by cc. 51 dnl # LDFLAGS needs -fsanitize=undefined at all times so libraries compiled with 55 dnl # the behavior of binaries and libraries build with -fsanitize=undefined. 58 AC_MSG_CHECKING([whether to build with -fsanitize=undefined support]) 61 [Enable -fsanitize=undefined support @<:@default=no@:>@])], 70 AC_MSG_CHECKING([whether $CC supports -fsanitize=undefined]) 72 CFLAGS="$CFLAGS -Werror -fsanitize=undefined" 76 UBSAN_CFLAGS="-fsanitize=undefined" 77 UBSAN_LDFLAGS="-fsanitize=undefined" 81 AC_MSG_ERROR([$CC does not support -fsanitize=undefined])
|
| /freebsd-14.2/contrib/llvm-project/openmp/runtime/src/ |
| H A D | extractExternal.cpp | 238 set<string> *undefined) { in computeExternalSymbols() argument 265 undefined->clear(); in computeExternalSymbols() 284 undefined->insert(stringTable.decode(e.name)); in computeExternalSymbols() 402 set<string> *undefined) { in findRequiredExternal() argument 414 set<string> &s = undefined[*it]; in findRequiredExternal() 435 set<string> *defined, *undefined; in main() local 449 undefined = new set<string>[argc - 2]; in main() 453 computeExternalSymbols(argv[i], defined + i - 2, undefined + i - 2); in main() 457 findRequiredExternal(nExternal, argc - 2, defined, undefined); in main()
|
| /freebsd-14.2/tests/sys/netinet6/ |
| H A D | proxy_ndp.sh | 59 while [ `jexec ${jname} ifmcstat | grep -c undefined` != "0" ]; do 101 while [ `jexec ${jname} ifmcstat | grep -c undefined` != "0" ]; do 107 while [ `jexec ${jname} ifmcstat | grep -c undefined` != "0" ]; do 148 while [ `jexec ${jname} ifmcstat | grep -c undefined` != "0" ]; do 185 while [ `jexec ${jname_a} ifmcstat | grep -c undefined` != "0" ]; do
|
| /freebsd-14.2/contrib/llvm-project/lld/docs/ELF/ |
| H A D | warn_backrefs.rst | 4 ``--warn-backrefs`` gives a warning when an undefined symbol reference is 8 right maintaining the set of undefined symbol references from the files loaded 12 set of undefined symbol references. When all resolving definitions have been 15 an undefined symbol resolved by a archive to the left of it. For example: 19 will result in an ``undefined reference`` error. If there are no cyclic 27 still search that archive for resolving any undefined references. This means 51 will result in an ``undefined reference`` error: 56 ``B``, your link may fail surprisingly with ``undefined symbol: 63 fail surprisingly with ``undefined symbol`` if there is somehow a dependency on
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | atmel,ebi.txt | 49 Default to 8 when undefined. 52 Default to "select" when undefined. 55 Default to "ncs" when undefined. 58 Default to "ncs" when undefined. 61 Default to "disabled" when undefined. 72 Default to "normal" when undefined.
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | Sanitizers.def | 139 // -fsanitize=undefined includes all the sanitizers which have low overhead, no 140 // ABI or address space layout implications, and only catch undefined behavior. 141 SANITIZER_GROUP("undefined", Undefined, 149 // -fsanitize=undefined-trap is an alias for -fsanitize=undefined. 150 SANITIZER_GROUP("undefined-trap", UndefinedTrap, Undefined)
|
| /freebsd-14.2/contrib/libxo/xohtml/external/ |
| H A D | jquery.js | 595 xml = undefined; 812 return undefined; 2005 data = undefined; 2173 type = undefined; 2383 return undefined; 2552 undefined : 2682 undefined; 2700 undefined; 2738 undefined; 2926 undefined; [all …]
|
| /freebsd-14.2/cddl/usr.sbin/plockstat/ |
| H A D | Makefile | 31 CFLAGS+= -fsanitize=address -fsanitize=undefined 32 LDFLAGS+= -fsanitize=address -fsanitize=undefined
|
| /freebsd-14.2/sys/arm64/arm64/ |
| H A D | disassem.c | 528 goto undefined; in disasm() 576 goto undefined; in disasm() 625 goto undefined; in disasm() 719 goto undefined; in disasm() 761 goto undefined; in disasm() 767 undefined: in disasm()
|
| /freebsd-14.2/cddl/usr.sbin/lockstat/ |
| H A D | Makefile | 31 CFLAGS+= -fsanitize=address -fsanitize=undefined 32 LDFLAGS+= -fsanitize=address -fsanitize=undefined
|
| /freebsd-14.2/cddl/usr.sbin/dtrace/ |
| H A D | Makefile | 33 CFLAGS+= -fsanitize=address -fsanitize=undefined 34 LDFLAGS+= -fsanitize=address -fsanitize=undefined
|
| /freebsd-14.2/sys/contrib/openzfs/rpm/redhat/ |
| H A D | zfs.spec.in | 5 %if %{undefined _udevdir} 14 %if %{undefined _udevruledir} 23 %if %{undefined _bashcompletiondir} 32 %if %{undefined _dracutdir} 40 %if %{undefined _initconfdir} 44 %if %{undefined _unitdir} 48 %if %{undefined _presetdir} 52 %if %{undefined _modulesloaddir} 56 %if %{undefined _systemdgeneratordir} 60 %if %{undefined _pkgconfigdir} [all …]
|
| /freebsd-14.2/sys/contrib/openzfs/rpm/generic/ |
| H A D | zfs.spec.in | 5 %if %{undefined _udevdir} 14 %if %{undefined _udevruledir} 23 %if %{undefined _bashcompletiondir} 32 %if %{undefined _dracutdir} 40 %if %{undefined _initconfdir} 44 %if %{undefined _unitdir} 48 %if %{undefined _presetdir} 52 %if %{undefined _modulesloaddir} 56 %if %{undefined _systemdgeneratordir} 60 %if %{undefined _pkgconfigdir} [all …]
|