Home
last modified time | relevance | path

Searched refs:compatibility_version (Results 1 – 22 of 22) sorted by relevance

/external/google-breakpad/src/common/mac/
Dmacho_id.cc202 identifier[8] = (dylib_cmd.dylib.compatibility_version >> 24) & 0xFF; in IDCommand()
203 identifier[9] = (dylib_cmd.dylib.compatibility_version >> 16) & 0xFF; in IDCommand()
204 identifier[10] = (dylib_cmd.dylib.compatibility_version >> 8) & 0xFF; in IDCommand()
205 identifier[11] = dylib_cmd.dylib.compatibility_version & 0xFF; in IDCommand()
/external/libcxxabi/src/
DCMakeLists.txt66 "-compatibility_version 1"
73 "-compatibility_version 1"
/external/libcxxabi/src/Unwind/
DCMakeLists.txt90 "-compatibility_version 1"
96 "-compatibility_version 1"
/external/icu/icu4c/source/config/
Dmh-darwin32 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO…
34 LD_SONAME = -Wl,-compatibility_version -Wl,$(SO_TARGET_VERSION_MAJOR) -Wl,-current_version -Wl,$(SO…
/external/llvm/tools/lto/
DMakefile33 -Wl,-compatibility_version -Wl,1
/external/libcxx/lib/
DCMakeLists.txt78 "-compatibility_version 1"
100 "-compatibility_version 1"
/external/compiler-rt/make/
DAppleBI.mk63 -compatibility_version 1 -current_version $(RC_ProjectSourceVersion) \
139 -compatibility_version 1 -current_version $(RC_ProjectSourceVersion) \
/external/e2fsprogs/lib/
DMakefile.darwin-lib26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
/external/clang/tools/libclang/
DMakefile49 LLVMLibsOptions += -Wl,-compatibility_version,1
DCMakeLists.txt112 set(LIBCLANG_LINK_FLAGS " -Wl,-compatibility_version -Wl,1")
/external/llvm/tools/llvm-shlib/
DMakefile50 -Wl,-compatibility_version -Wl,1
DCMakeLists.txt113 …" -compatibility_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR} -current_version ${LLVM_VERSI…
/external/lz4/lib/
DMakefile56 …SONAME_FLAGS = -install_name $(PREFIX)/lib/liblz4.$(SHARED_EXT_MAJOR) -compatibility_version $(LIB…
/external/lldb/lib/
DMakefile120 -Wl,-compatibility_version -Wl,1
/external/deqp/framework/delibs/cmake/
Dtoolchain-ios.cmake55 set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ")
/external/llvm/tools/macho-dump/
Dmacho-dump.cpp338 << " ('compat_version, " << DLLC.dylib.compatibility_version << ")\n"; in DumpDylibID()
/external/llvm/include/llvm/Support/
DMachO.h635 uint32_t compatibility_version; member
1107 sys::swapByteOrder(d.dylib.compatibility_version); in swapStruct()
/external/libvpx/libvpx/build/make/
DMakefile313 … -Wl,-headerpad_max_install_names,-compatibility_version,1.0,-current_version,$$(VERSION_MAJOR) \
/external/ceres-solver/cmake/
DiOS.cmake105 set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ")
/external/libpcap/
DMakefile.in403 -compatibility_version $$COMPAT_VER \
/external/llvm/tools/llvm-objdump/
DMachODump.cpp567 << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibs()
568 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibs()
569 << (dl.dylib.compatibility_version & 0xff) << ","; in PrintDylibs()
8320 if (dl.dylib.compatibility_version == 0xffffffff) in PrintDylibCommand()
8323 outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibCommand()
8324 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibCommand()
8325 << (dl.dylib.compatibility_version & 0xff) << "\n"; in PrintDylibCommand()
/external/clang/include/clang/Driver/
DOptions.td343 def compatibility__version : JoinedOrSeparate<["-"], "compatibility_version">;