Home
last modified time | relevance | path

Searched refs:compatibility_version (Results 1 – 23 of 23) 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/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/llvm-shlib/
DCMakeLists.txt56 …" -compatibility_version 1 -current_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VER…
95 …" -compatibility_version 1 -current_version ${LLVM_VERSION_MAJOR}.${LLVM_VERSION_MINOR}.${LLVM_VER…
DMakefile50 -Wl,-compatibility_version -Wl,1
/external/llvm/tools/lto/
DCMakeLists.txt30 …" -compatibility_version 1 -current_version ${LTO_VERSION}.${LLVM_VERSION_MINOR}.${LLVM_VERSION_PA…
DMakefile33 -Wl,-compatibility_version -Wl,1
/external/e2fsprogs/lib/
DMakefile.darwin-lib26 $(Q) (cd pic; $(CC) -dynamiclib -compatibility_version 1.0 -current_version $(BSDLIB_VERSION) \
/external/compiler-rt/make/
DAppleBI.mk63 -compatibility_version 1 -current_version $(RC_ProjectSourceVersion) \
139 -compatibility_version 1 -current_version $(RC_ProjectSourceVersion) \
/external/libcxx/lib/
DCMakeLists.txt92 "-compatibility_version 1"
114 "-compatibility_version 1"
/external/clang/tools/libclang/
DMakefile51 LLVMLibsOptions += -Wl,-compatibility_version,1
DCMakeLists.txt106 set(LIBCLANG_LINK_FLAGS " -Wl,-compatibility_version -Wl,1")
/external/libunwind_llvm/src/
DCMakeLists.txt85 "-compatibility_version 1"
/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/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/builds/cmake/
DiOS.cmake106 "-compatibility_version ")
/external/libvpx/libvpx/build/make/
DMakefile315 … -Wl,-headerpad_max_install_names,-compatibility_version,1.0,-current_version,$$(VERSION_MAJOR) \
/external/llvm/include/llvm/Support/
DMachO.h633 uint32_t compatibility_version; member
1102 sys::swapByteOrder(d.dylib.compatibility_version); in swapStruct()
/external/ceres-solver/cmake/
DiOS.cmake105 set (CMAKE_C_OSX_COMPATIBILITY_VERSION_FLAG "-compatibility_version ")
/external/libpcap/
DMakefile.in404 -compatibility_version $$COMPAT_VER \
/external/llvm/tools/llvm-objdump/
DMachODump.cpp540 << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibs()
541 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibs()
542 << (dl.dylib.compatibility_version & 0xff) << ","; in PrintDylibs()
8477 if (dl.dylib.compatibility_version == 0xffffffff) in PrintDylibCommand()
8480 outs() << ((dl.dylib.compatibility_version >> 16) & 0xffff) << "." in PrintDylibCommand()
8481 << ((dl.dylib.compatibility_version >> 8) & 0xff) << "." in PrintDylibCommand()
8482 << (dl.dylib.compatibility_version & 0xff) << "\n"; in PrintDylibCommand()
/external/clang/include/clang/Driver/
DOptions.td351 def compatibility__version : JoinedOrSeparate<["-"], "compatibility_version">;