Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
libcxx/test/libcxx/vendor/apple/system-install-properties.sh.cpp
Show All 9 Lines | |||||
// This file checks various properties of the installation of libc++ when built as | // This file checks various properties of the installation of libc++ when built as | ||||
// a system library on Apple platforms. | // a system library on Apple platforms. | ||||
// Make sure we install the libc++ headers in the right location. | // Make sure we install the libc++ headers in the right location. | ||||
// | // | ||||
// RUN: stat "%{include}/__config" | // RUN: stat "%{include}/__config" | ||||
// Make sure we install libc++.1.dylib in the right location. | // Make sure we install libc++.1.dylib and libc++experimental.a in the right location. | ||||
// | // | ||||
// RUN: stat "%{lib}/libc++.1.dylib" | // RUN: stat "%{lib}/libc++.1.dylib" | ||||
// RUN: stat "%{lib}/libc++experimental.a" | |||||
// Make sure we install a symlink from libc++.dylib to libc++.1.dylib. | // Make sure we install a symlink from libc++.dylib to libc++.1.dylib. | ||||
// | // | ||||
// RUN: stat "%{lib}/libc++.dylib" | // RUN: stat "%{lib}/libc++.dylib" | ||||
// RUN: readlink "%{lib}/libc++.dylib" | grep "libc++.1.dylib" | // RUN: readlink "%{lib}/libc++.dylib" | grep "libc++.1.dylib" | ||||
// Make sure the install_name is /usr/lib. | // Make sure the install_name is /usr/lib. | ||||
// | // | ||||
Show All 15 Lines |