Lines Matching full:dylib
42 --version X[.Y[.Z]] The version of the library to encode in the dylib.
118 dylib_name="libc++.1.dylib"
123 step "Building libc++.dylib and libc++abi.dylib for architecture ${arch}"
143 dylib=${1}
145 … inputs=$(for arch in ${architectures}; do echo "${build_dir}/${arch}-install/lib/${dylib}"; done)
147 step "Creating a universal dylib ${dylib} from the dylibs for all architectures"
148 xcrun --sdk "${sdk}" lipo -create ${inputs} -output "${build_dir}/${dylib}"
150 step "Installing the (stripped) universal dylib to ${install_dir}/usr/lib"
152 cp "${build_dir}/${dylib}" "${install_dir}/usr/lib/${dylib}"
153 xcrun --sdk "${sdk}" strip -S "${install_dir}/usr/lib/${dylib}"
155 step "Installing the unstripped dylib and the dSYM bundle to ${symbols_dir}"
156 xcrun --sdk "${sdk}" dsymutil "${build_dir}/${dylib}" -o "${symbols_dir}/${dylib}.dSYM"
157 cp "${build_dir}/${dylib}" "${symbols_dir}/${dylib}"
161 universal_dylib libc++abi.dylib
164 (cd "${install_dir}/usr/lib" && ln -s "${dylib_name}" libc++.dylib)