Home
last modified time | relevance | path

Searched refs:dylib (Results 1 – 25 of 66) sorted by relevance

123

/freebsd/contrib/bmake/mk/sys/
H A DDarwin.mk8 .SUFFIXES: .sh .m4 .dylib
10 .LIBS: .a .dylib
12 SHLIBEXT ?= .dylib
13 HOST_LIBEXT ?= .dylib
14 DSHLIBEXT ?= .dylib
85 LIBEXT ?= .dylib
/freebsd/contrib/libpcap/
H A DMakefile.in464 libpcap.dylib: $(OBJ)
465 rm -f libpcap*.dylib
471 -o libpcap.$$VER.dylib $(OBJ) $(ADDLOBJS) $(LIBS) \
472 -install_name $(libdir)/libpcap.$$MAJOR_VER.dylib \
705 install-shared-dylib: libpcap.dylib
710 $(INSTALL_PROGRAM) libpcap.$$VER.dylib $(DESTDIR)$(libdir)/libpcap.$$VER.dylib; \
711 ln -sf libpcap.$$VER.dylib $(DESTDIR)$(libdir)/libpcap.$$MAJOR_VER.dylib; \
712 ln -sf libpcap.$$MAJOR_VER.dylib $(DESTDIR)$(libdir)/libpcap.dylib
788 uninstall-shared-dylib:
791 rm -f $(DESTDIR)$(libdir)/libpcap.$$VER.dylib; \
[all …]
/freebsd/crypto/heimdal/lib/hx509/
H A Dtest_java_pkcs11.in43 for a in libhx509.so .libs/libhx509.so libhx509.dylib .libs/libhx509.dylib ; do
/freebsd/contrib/llvm-project/lld/MachO/
H A DOptions.td81 def print_dylib_search: Flag<["--"], "print-dylib-search">,
105 def no_warn_dylib_install_name: Flag<["--"], "no-warn-dylib-install-name">,
108 def warn_dylib_install_name: Flag<["--"], "warn-dylib-install-name">,
109 HelpText<"Warn on -install_name if -dylib is not passed">,
157 def dylib : Flag<["-"], "dylib">,
223 HelpText<"Like -l<name>, but specify dylib as an upward dependency">,
342 HelpText<"Preferred hex load address for a dylib or bundle.">,
454 HelpText<"Set an internal install path in a dylib">,
822 HelpText<"Run <symbol> as the first initializer in a dylib">,
827 HelpText<"Re-export the dylib as <name>">,
[all …]
H A DInputFiles.cpp1804 if (!dylib) in parseLoadCommands()
1964 for (const auto *dylib : extraDylibs) in isExplicitlyLinked() local
1965 if (dylib->isReferenced()) in isExplicitlyLinked()
1974 for (DylibFile *dylib : extraDylibs) in getSyntheticDylib()
1975 if (dylib->installName == installName) { in getSyntheticDylib()
1978 return dylib; in getSyntheticDylib()
1983 dylib->currentVersion = currentVersion; in getSyntheticDylib()
1984 dylib->compatibilityVersion = compatVersion; in getSyntheticDylib()
1985 extraDylibs.push_back(dylib); in getSyntheticDylib()
1986 return dylib; in getSyntheticDylib()
[all …]
H A DWriter.cpp341 c->dylib.name = sizeof(dylib_command); in writeTo()
342 c->dylib.timestamp = 0; in writeTo()
343 c->dylib.compatibility_version = compatibilityVersion; in writeTo()
344 c->dylib.current_version = currentVersion; in writeTo()
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/BinaryReader/
H A DDylibReader.cpp170 BA.InstallName = Slice.copyString(LCI.Ptr + DLLC.dylib.name); in readMachOHeader()
171 BA.CurrentVersion = DLLC.dylib.current_version; in readMachOHeader()
172 BA.CompatVersion = DLLC.dylib.compatibility_version; in readMachOHeader()
178 Slice.copyString(LCI.Ptr + DLLC.dylib.name)); in readMachOHeader()
/freebsd/contrib/lib9p/
H A D.gitignore21 *.dylib
H A DGNUmakefile55 LIB := lib9p.dylib
/freebsd/sys/contrib/libsodium/dist-build/
H A Dgenerate-emscripten-symbols.sh20 nm /usr/local/lib/libsodium.23.dylib | \
/freebsd/contrib/ncurses/misc/
H A Dshlib113 *.dylib)
/freebsd/contrib/file/magic/Magdir/
H A Dmach251 #!:ext dylib
252 !:ext dylib/
255 # normally name extension bundle; but exceptions like: AMDil_r700.dylib
256 !:ext bundle/dylib/
/freebsd/contrib/llvm-project/libcxx/include/
H A D__availability31 // For example, the filesystem library was introduced in the dylib in macOS 10.15.
110 // depend on something in the dylib.
277 // The dylib part of print is not needed on Apple platforms. Therefore when
278 // the macro is not available the code calling the dylib is commented out.
H A Dprint58 // console. This function is in the dylib to avoid pulling in windows.h
60 // of the dylib too.
63 // it with C++23 would fail since the dylib is currently built using C++20.
/freebsd/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h326 template <> struct MappingTraits<MachO::dylib> { in LLVM_YAML_IS_SEQUENCE_VECTOR()
327 static void mapping(IO &IO, MachO::dylib &LoadCommand); in LLVM_YAML_IS_SEQUENCE_VECTOR()
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.h613 struct dylib { struct
623 struct dylib dylib; argument
1265 sys::swapByteOrder(d.dylib.name); in swapStruct()
1266 sys::swapByteOrder(d.dylib.timestamp); in swapStruct()
1267 sys::swapByteOrder(d.dylib.current_version); in swapStruct()
1268 sys::swapByteOrder(d.dylib.compatibility_version); in swapStruct()
/freebsd/contrib/libcbor/doc/source/
H A Dgetting_started.rst147 …owing version identifiers are used as a part of the SONAME (Linux) or the dylib `"Compatibility ve…
152 .. warning:: Please note that releases up to and including v0.6.0 `may export misleading .so/.dylib
/freebsd/contrib/ntp/sntp/m4/
H A Dntp_openssl.m4159 test -f $i/libcrypto.dylib -a -f $i/libssl.dylib && break
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DMachOYAML.cpp362 void MappingTraits<MachO::dylib>::mapping(IO &IO, MachO::dylib &DylibStruct) { in mapping()
371 IO.mapRequired("dylib", LoadCommand.dylib); in mapping()
/freebsd/contrib/llvm-project/llvm/include/llvm/Demangle/
H A DREADME.txt46 depends on the libcxx dylib.
/freebsd/contrib/bmake/mk/
H A Dlib.mk207 LD_so = ${SHLIB_FULLVERSION}.dylib
211 LD_solink = dylib
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h92 MachO::dylib{24, Timestamp, CurrentVersion, CompatibilityVersion}),
115 MachO::dylib{24, Timestamp, CurrentVersion, CompatibilityVersion}),
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_procmaps_mac.cpp353 uint32_t dylib_name_offset = dylib_lc->dylib.name.offset; in IsModuleInstrumented()
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/
H A DObjdumpOpts.td354 def dylib_id : Flag<["--"], "dylib-id">,
356 "dylib Mach-O file (requires --macho)">,
/freebsd/sys/contrib/openzfs/config/
H A Dconfig.rpath541 shrext=.dylib

123