Lines Matching full:install
29 --install-dir <DIR> Path to the directory to install the library to.
31 --symbols-dir <DIR> Path to the directory to install the .dSYM bundle to.
38 --headers-only Only install the header part of the library -- don't actually
63 --install-dir)
131 -DCMAKE_INSTALL_PREFIX="${build_dir}/${arch}-install" \
140 xcrun cmake --build "${build_dir}/${arch}" --target install-cxx-headers install-cxxabi-headers -- -v
142 xcrun cmake --build "${build_dir}/${arch}" --target install-cxx install-cxxabi -- -v
149 inputs=$(for arch in ${architectures}; do echo "${build_dir}/${arch}-install/lib/${dylib}"; done)
169 experimental_libs=$(for arch in ${architectures}; do echo "${build_dir}/${arch}-install/lib/libc++experimental.a"; done)
173 # Install the headers by copying the headers from one of the built architectures
174 # into the install directory. Headers from all architectures should be the same.
178 ditto "${build_dir}/${any_arch}-install/include" "${install_dir}/usr/include"
189 # Also install universal static archives for libc++ and libc++abi
190 libcxx_archives=$(for arch in ${architectures}; do echo "${build_dir}/${arch}-install/lib/libc++.a"; done)
191 libcxxabi_archives=$(for arch in ${architectures}; do echo "${build_dir}/${arch}-install/lib/libc++abi.a"; done)