5bfb079aff
- Package is generated to install into ROCM_PATH by setting to CMAKE_INSTALL_PREFIX, if defined in the env otherwise default into /opt/rocm - Lib SO version is added dependent on build version - RUNPATH is set to a default value based on /opt/rocm and if ROCM_RPATH env is defined it is overwritten. - Symlinks are created for library so files. - ld.so.conf entry is done only if /opt/rocm/roctracer dir exists Signed-off-by: Pruthvi Madugundu <mpruthvi@gmail.com>
23 řádky
366 B
Plaintext
23 řádky
366 B
Plaintext
#/bin/bash
|
|
|
|
set -e
|
|
|
|
do_ldconfig() {
|
|
INSTALL_PATH=/opt/rocm/roctracer
|
|
if [ -e "${INSTALL_PATH}" ] ; then
|
|
echo /opt/rocm/roctracer/lib > /etc/ld.so.conf.d/libroctracer64.conf && ldconfig
|
|
fi
|
|
}
|
|
|
|
case "$1" in
|
|
configure)
|
|
do_ldconfig
|
|
;;
|
|
abort-upgrade|abort-remove|abort-deconfigure)
|
|
echo "$1"
|
|
;;
|
|
*)
|
|
exit 0
|
|
;;
|
|
esac
|